简要描述
示例URL
软件请求回调方式
软件请求回调请求类型
软件回调参数说明

参数 类型 参数名 是否必填 描述 说明
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 具体数据 对应接口发送的数据对象
» No body string yes 记录编号 表示当前记录的编号,唯一值
» LicensePlateNumber body string¦null yes 车牌号码 车牌号码,注意,车牌号码入参时,默认都转换成大写
回调参数示例
{
	"ParkKey":"1710773208049923",
	"AppId":"vzpt9htl",
	"TimeStamp":"1710874092927",
	"Data":{
		"No":"1668010507727935-B12345",
		"LicensePlateNumber":"粤B12345"
		},
	"Nonce":"1770160361917415425",
	"Sign":"6y2j/6mwiszgpolz4kuft+sthagzk56ddnmil/pwm4a=",
	"RequestId":"1770160361917415424"
}
服务端返回软件说明
参数 类型 参数名 是否必填 描述
ResultCode integer true none 请求结果代码
ResultMsg string true none 请求提示信息
Data object¦null false none 具体数据
返回示例
{
  "ResultCode": 200,
  "ResultMsg": "操作成功"
}