接口说明
获取商家信息。
接口地址
/api/customer
传入参数
| 名称 | 类型 | 必须 | 描述 |
|---|---|---|---|
| customer_id | int | true | 商家编号 |
返回数据
| 参数名 | 类型 | 说明 |
|---|---|---|
| id | int | 商家编号 |
| name | string | 商家名称 |
| balance | decimal | 余额 |
示例
{
"code": "ok",
"message": "",
"data": {
"id": 10000,
"name": "商家名称",
"balance": "575.6000"
}
}