文档
测试

查询活动餐厅按距离排序列表

POST
http://crm.houcaller.com/htest/openapi/v1/getOrgListByThemeId

请求参数

application/json
参数名
类型
描述
必填
themeId
String
活动id
必填
city
String
城市
可选
longitude
double
经度
可选
latitude
double
纬度
可选

响应参数

参数名
类型
描述
必填
msg
string
示例:操作成功
必填
code
int
示例:0
必填
data
object
数据字典
必填
list
array
数据列表
必填
address
string
地址
必填
city
string
城市
必填
distance
float
距离(单位 公里)
必填
latitude
float
纬度
必填
longitude
float
经度
必填
orgCode
string
餐厅编码
必填
orgName
string
餐厅名称
必填
phone
string
餐厅电话
必填

说明 / 示例

<pre>{ "msg": "操作成功", "code": 0, "data": { "list": [ { "address": "体育路95号 工人体育馆之配套商业6号店(大润发旁)", "city": "厦门", "distance": 0.5907, "latitude": 24.493324, "longitude": 118.10661, "orgCode": "0121", "orgName": "厦门大润发餐厅", "phone": "" }, { "address": "杏南路27号(杏滨街道办对面)", "city": "厦门", "distance": 9.197, "latitude": 24.565144, "longitude": 118.0365, "orgCode": "0116", "orgName": "厦门杏林杏南餐厅", "phone": "" } ] } }