账单确认Webhook
收藏
我的收藏消息说明
- •订单完成1h后,平台会将订单账单确认消息推送给第三方系统
对应申请能力
订单推送
请求头字段
字段 | 说明 |
Msg-Id | 同一实体下同一action的msg_id相同,服务商可根据msg_id对于消息去重 |
X-Douyin-Signature | 抖音侧签名,服务商可根据签名判断该消息是否来自抖音开放平台 |
Content-Type | 固定值application/json |
消息可能重复推送,请使用Msg_Id进行去重处理!
请求体字段
字段 | 类型 | 说明 |
event | string | 消息类型,用于区分各类消息 |
client_key | string | 对应服务商平台或开发者平台中的APPID,应用ID |
content | string | 消息内容,根据需要解析消息内容,不同类型的消息内容不同 |
log_id | string | 抖音内部日志id,可提供给抖音方便排查问题 |
- •event:life_takeout_bill_ledger_create
- •content内容
字段 | 类型 | 说明 | 备注 | 最后改动时间 |
order | object | 订单基础信息 | | |
.order_id | string | 抖音订单号 | | |
.sale_price | int32 | 商品售卖金额,单位分 | | |
.estimated_order_income | int32 | 预计收入,单位分 | | |
.activities_fee_amount | int32 | 商家活动补贴,单位分 | | |
.commission_amount | int32 | 佣金,单位分 | | |
.platform_deliver_freight_fee | int32 | 平台配送服务费,单位分(仅平台配送) | | |
.merchant_deliver_freight_fee | int32 | 自配送服务费,单位分(仅商家自配送) | | |
.freight_pay_amount | int32 | 用户支付配送费,单位分 | | |
poi_id | string | 门店id | | |
amount_change | object | 除部分退外其他收入变化 | | |
.sale_price | int32 | 商品售卖金额,单位分 | | |
.estimated_order_income | int32 | 预计收入,单位分 | | |
.activities_fee_amount | int32 | 商家活动补贴,单位分 | | |
.commission_amount | int32 | 佣金,单位分 | | |
.platform_deliver_freight_fee | int32 | 平台配送服务费,单位分(仅平台配送) | | |
.merchant_deliver_freight_fee | int32 | 自配送服务费,单位分(仅商家自配送) | | |
.freight_pay_amount | int32 | 用户支付配送费,单位分 | | |
请求示例
{ "event":"life_takeout_bill_ledger_create", "client_key": "axxxxxxxxxxxxx", "content":"{\"order\":{\"order_id\":\"xxxxxxxxxxx\",\"sale_price\":6990,\"estimated_order_income\":6284,\"activities_fee_amount\":0,\"commission_amount\":706,\"platform_deliver_freight_fee\":0,\"merchant_deliver_freight_fee\":0,\"freight_pay_amount\":0},\"poi_id\":\"xxxxxxxxx\"}" }