紧急联系人查询
功能:查询紧急联系人列表
资源URL:
GET: v1/safe/contacter
请求参数
参数名称 | 类型 | 说明 |
---|---|---|
client_uid | string | 乘客在第三方的uid,不变且唯一 |
phone | string | 乘车人手机号 |
请求示例:
curl -X GET
-H "Content-Type: application/x-www-form-urlencoded"
-H 'Authorization: Bearer domain|{access_token}'
'https://api.xiaojukeji.com/v1/safe/contacter?client_uid=&phone=11100011296'
返回参数说明:
参数名 | 类型 | 含义 |
---|---|---|
name | string | 昵称 |
countryCode | string | 国家码 |
phone | string | 手机号 |
isAuto | bool | 是否开启自动行程分享,false:不开启,true:开启 |
queryAuth | int | 是否开启紧急联系人查询授权,0:不开启,1:开启 |
distance | int | 设置行程分享起终点距离,大于该值即分享,单位米 |
shareStartTime | string | 单个联系人的行程分享开始时间,00:00-23:00 |
shareEndTime | string | 单个联系人的行程分享结束时间,00:00-24:00 |
返回成功示例:
成功:http status 200
[
{
"name": "张三",
"countryCode": "86",
"phone": "11100011291",
"isAuto": false,
"queryAuth": 0,
"distance": 100,
"shareStartTime": "06:00",
"shareEndTime": "22:00"
},
{
"name": "李四",
"countryCode": "86",
"phone": "11100011292",
"isAuto": false,
"queryAuth": 0,
"distance": 100,
"shareStartTime": "06:00",
"shareEndTime": "22:00"
}
]
返回失败示例:
失败:http status 非200
{
"error":"code(40010)",
"error_detail":"参数错误:client_uid"
}