API文档中心
开发文档
API文档
店铺服务
订单管理
转单售后
消息服务
字典服务
公共参数
请求地址(仅支持HTTP GET请求方式)
环境 | 请求地址 |
---|---|
正式环境 | //api.zhuandan.com/v1/account/shops/detail |
系统参数说明:
参数名 | 参数类型 | 参数描述 | 示例值 |
---|---|---|---|
app_key | String(32) | 应用的app key | adc7a8960911564e89ce69fd92546aaa |
access_token | String(32) | 获取到的应用授权 | adc7a8960911564e89ce69fd92546aaa |
timestamp | String(10) | 当前请求时间戳 | 1401935833(允许时差±5分钟,单位秒) |
sig | String(32) | 接口请求签名 | adc7a8960911564e89ce69fd92546aaa |
API接口参数说明
参数名称 | 参数类型 | 是否必须 | 参数示例 | 参数描述 |
---|---|---|---|---|
shop_id | int | 必选 | 1 | 要获取信息的门店ID |
响应结构体
名称 | 类型 | 示例 | 描述 |
---|---|---|---|
storeId | long | 1002103210 | 店铺编号 |
mobile | string | 13800138000 | 店主账号/店铺主账号 |
shop_name | string | 某某花店 | 店铺名称 |
string | admin@admin.com | 店主邮箱 | |
map_geo | string | 120.127170,30.279290 | 店铺经纬度坐标(高德系) |
store_certification | int | 1 | 店铺认证状态,1已认证,0未认证 |
allow_fadan | int | 1 | 允许发单,1允许,0否 |
allow_jiedan | int | 1 | 允许接单否,1允许,0否 |
allow_tixian | int | 1 | 允许提现否,1允许,0否 |
eanble | int | 1 | 是否冻结,1未冻结,0已冻结 |
响应示例
{
"code": 200,
"result": {
"storeId": 1002103210,
"mobile": "13800138000",
"shop_name": "某某花店",
"email": "admin@admin.com",
"areainfo": "四川|成都|武侯区",
"address": "XX街道XX路XX号",
"map_geo": "120.127170,30.279290",
"store_certification": 1,
"allow_fadan": 1,
"allow_tixian": 1,
"allow_jiedan": 1,
"enable": 1,
},
"error": null
}