查询余额接口

查询余额接口,请求方式:POST;请求的Content-Type,必须设置为:application/x-www-form-urlencoded

请求地址

请求地址:/api/customer/balance

请求参数

参数名称
字段类型
是否必填
示例值
描述
customerId String 10001
客户ID(平台分配)
sign string 375d05b41775e1ddf2098504444af1e2
签名

请求示例


  "customerId": "10001",
  "sign": "375d05b41775e1ddf2098504444af1e2",
 

响应参数

参数名称
字段类型
是否必填
示例值
描述
customerId string 10001
客户ID(平台分配)
balance double 2520.00
客户余额

响应示例

{
    "code": 200,
    "message": "success",
    "data": {
        "customerId": "1001",
        "balance": "888.00"
    },
}