pospal 银豹收银系统-凯发网站
开发平台

pospal 银豹收银系统-凯发网站

1. 查询访问量配置


接口地址 http://host:port/pospal-api2/openapi/v1/openapilimitaccess/queryaccesstimes
请求头
  • user-agent: openapi
  • content-type: application/json; charset=utf-8
  • accept-encoding: gzip,deflate
  • time-stamp: 1437528688233
  • data-signature: bf706e6ac693ba3b1babd32e6713431d
  • 请求方式 post
    请求体
  • {
  • "appid": "abcdefghijklmn"
  • }
  • 参数名 是否必须 类型 说明
    appid string pospal配置的访问凭证
    任何门店的appid都可以查出当前门店及连锁门店所有的访问量配置
    返回结果
  • {
  • "status": "success",
  • "messages": [],
  • "data": [
  • {
  • "appid": "9ce71412c6b26d0c7ef894bcccc4dddd",
  • "limittimes": 3000,
  • "startdate": "2017-10-27 00:00:00",
  • "enddate": "2018-11-02 23:59:59"
  • },
  • {
  • "appid": "9ce71412c6b26d0c7ef894bcccc4dddd",
  • "limittimes": 3000,
  • "startdate": "2017-05-16 00:00:00",
  • "enddate": "2018-11-02 23:59:59"
  • }
  • ]
  • }
  • 字段名 类型 说明
    status string 是否正确处理请求,返回success或error,不区分大小写
    messages string[] 处理结果的消息
    errorcode int 业务处理的错误代码,参见错误代码表
    data json 访问量实体数据
    appid string 账号对应的appid
    limittimes long 每日访问量
    startdate string 开始时间格式为yyyy-mm-dd hh:mm:ss,当startdate=null 或enddate=null 时,表示此此账号一直都是使用默认访问量。
    enddate string 到期时间格式为yyyy-mm-dd hh:mm:ss,可为null。如果当前时间大于结束到期,访问量降为默认访问量

    2. 查询每日访问量


    接口地址 http://host:port/pospal-api2/openapi/v1/openapilimitaccess/querydailyaccesstimeslog
    请求头
  • user-agent: openapi
  • content-type: application/json; charset=utf-8
  • accept-encoding: gzip,deflate
  • time-stamp: 1437528688233
  • data-signature: bf706e6ac693ba3b1babd32e6713431d
  • 请求方式 post
    请求体
  • {
  • "appid": "abcdefghijklmn",
  • "begindate": "2016-12-23",
  • "enddate": "2016-12-30"
  • }
  • 参数名 是否必须 类型 说明
    appid string pospal配置的访问凭证
    任何门店的appid都可以查出当前门店及连锁门店所有的访问量配置
    begindate string 开始日期,格式yyyy-mm-dd
    enddate string 结束日期,格式yyyy-mm-dd
    enddate – begindate <=7 天
    返回结果
  • {
  • "status": "success",
  • "messages": [],
  • "data": [
  • {
  • "appid": "ec48ad85dcddf5d69567c82e4565b127",
  • "accessdate": "2016-12-23",
  • "limittimes": 3000,
  • "haveacesstimes": 996
  • },
  • {
  • "appid": "ec48ad85dcddf5d69567c82e4565b127",
  • "accessdate": "2016-12-24",
  • "limittimes": 3000,
  • "haveacesstimes": 456
  • }
  • ]
  • }
  • 字段名 类型 说明
    status string 是否正确处理请求,返回success或error,不区分大小写
    messages string[] 处理结果的消息
    errorcode int 业务处理的错误代码,参见错误代码表
    data json 访问量实体数据
    appid string 账号对应的appid
    limittimes long 每日访问量
    accessdate string 访问日期,格式为yyyy-mm-dd
    haveacesstimes long 已使用的访问量

    网站地图