简要描述
- 第三方停车业务接收月租车注销回调通知接口定义规范
- 如果未实现该接口,请不要在设置回调参数中启用该接口,避免无意义的数据通知操作!
示例URL
{{第三方URL}},示例URL:http://localhost:8888/API/V2/OnUnsubscribedVehicle
注:此处url指的是软件回调给第三方的URL,即第三方要接收软件上传数据的地址;
请求方式
- POST
请求类型
- Content-Type:application/json
回调参数说明
参数 | 类型 | 参数名 | 是否必填 | 描述 | 说明 |
---|---|---|---|---|---|
ParkKey | body | string | yes | 停车场编号 | 本地停车场编号 |
AppId | body | string | yes | 应用服务标识 | 本地停车场应用服务标识 |
TimeStamp | body | string | yes | 时间戳 | 时间戳13位,精确到毫秒 |
Nonce | body | string | yes | 随机字符串 | 随机字符串 |
Sign | body | string | yes | 接口签名 | 按照接口鉴权生成的签名 |
Data | body | object | yes | 具体数据 | 对应接口发送的数据对象 |
» LicensePlateNumber | body | string¦null | yes | 车牌号码 | 车牌号码,注意,车牌号码入参时,默认都转换成大写 |
» OperatorName | body | string¦null | yes | 操作人姓名 | 操作人姓名 |
» OperationTime | body | string | yes | 操作时间 | 操作时间,参考基本规则中的日期格式,精确到秒,如:2023-08-01 09:34:51 |
回调参数示例
{
"ParkKey":"1708773681705596",
"AppId":"p226uwb3",
"TimeStamp":"1709017088914",
"Data":{
"LicensePlateNumber":"粤CCC111",
"OperatorName":"",
"OperationTime":"2024-02-27 14:57:56"
},
"Nonce":"1762371522557673472",
"Sign":"4a83orcegjfpiemnomqzolh8bkcq+78dhb7u0f0p29u="
}
回调返回说明
参数 | 类型 | 参数名 | 是否必填 | 描述 |
---|---|---|---|---|
ResultCode | integer | true | none | 请求结果代码 |
ResultMsg | string | true | none | 请求提示信息 |
Data | object¦null | false | none | 具体数据 |
返回示例
{
"ResultCode": 200,
"ResultMsg": "操作成功"
}
作者:mry 创建时间:2024-10-24 09:01
更新时间:2024-10-24 11:29
更新时间:2024-10-24 11:29