Skip to main content
GET
/
agent
/
v1
/
account
/
info
curl --location 'https://kf.pikabao.cc/agent/v1/account/info?appid=user123&timestamp=1640995200000&sign=ABC123...'
{
  "code": 0,
  "msg": "",
  "content": {
    "id": "123456789",
    "createTime": "2023-01-01 00:00:00",
    "updateTime": "2023-12-31 23:59:59",
    "enable": true,
    "name": "张三",
    "balance": "1000.00",
    "notifyUrl": "https://example.com/notify"
  }
}

请求参数

appid
string
required
用户标识
timestamp
string
required
当前时间戳(毫秒),与平台服务器时间不可相差超过 5 分钟
sign
string
required
签名值,签名算法请参考签名规则

响应

code
integer
响应代码,0 表示成功
msg
string
响应消息
content
object
用户信息对象
curl --location 'https://kf.pikabao.cc/agent/v1/account/info?appid=user123&timestamp=1640995200000&sign=ABC123...'
{
  "code": 0,
  "msg": "",
  "content": {
    "id": "123456789",
    "createTime": "2023-01-01 00:00:00",
    "updateTime": "2023-12-31 23:59:59",
    "enable": true,
    "name": "张三",
    "balance": "1000.00",
    "notifyUrl": "https://example.com/notify"
  }
}