通知服务商加锁
收藏我的收藏
接口说明
通知服务商加锁
请求参数
参数名称 | 参数类型 | 是否必填 | 参数描述 | 备注 |
request_id | string | 必填 | 本次请求id | |
order_id | string | 必填 | 抖音侧的订单号 | |
reason_code | int64 | 必填 |
|
|
reason_msg | string | 可选 |
| |
lock_infos | array | 必填 |
| |
.certificate_id | string | 必填 |
| |
.code | string | 必填 |
| |
.lock_scene | int64 | 必填 |
|
|
请求示例
{ "request_id":"11111222222", //本次请求id "order_id":"11111", "reason_code":1, //变更原因code 透传变更原因 1001 送礼锁定 1002 超时未领取解锁 1003 领券解锁 1004 取消赠送解锁 1005 锁定超时尝试解锁 1099 其他 "reason_msg":"", "lock_infos":[ { "certificate_id":"1111111", //券码id "code":"三方服务商三方码", "lock_scene":1000 , //锁定场景 送礼 } ] }
响应参数
参数名称 | 参数类型 | 是否必填 | 参数描述 | 备注 |
data | object | 必填 | |
|
.error_code | int64 | 必填 |
| |
.description | string | 必填 | | |
.result | int64 | 必填 |
|
|
.certificates | array | 可选 |
| |
..certificate_id | string | 必填 |
| |
..error_code | int64 | 必填 |
| |
..description | string | 必填 |
| |
响应示例
{ "data": { "error_code": 0, "description": "success", "result":2, "certificates": [ { "certificate_id": "111", "error_code": 0, "description": "11111fwef" } ] } }