应用一次性收费状态更新
Webhookapp/purchases_one_time_update
一次性收费状态更新时触发。
需要 shop 访问权限。最低支持版本:202207。
请求头
X-Shoplazza-Topicstring
触发本次推送的事件,例如 orders/create
示例:
orders/createX-Shoplazza-Hmac-Sha256string
请求体的 HMAC-SHA256 签名(base64 编码),使用应用的 Client Secret 生成,用于验证请求来自 Shoplazza
X-Shoplazza-Shop-Domainstring
产生该事件的店铺域名
示例:
example.myshoplaza.comX-Shoplazza-Api-Versionstring
序列化 payload 使用的 API 版本
示例:
2025-06X-Shoplazza-Deduplication-IDstring
本次推送的去重 ID,同一事件重发时保持不变,用于幂等去重
请求体
- 数据结构
- 示例
application_idstring
应用 ID
idstring
应用收费 ID
namestring
向商家展示的收费名称
pricestring
收费金额
statusstring
应用收费的当前状态
store_idinteger
店铺 ID
testboolean
是否为测试收费
updated_atstring
最后更新时间,ISO-8601 格式
{
"application_id": "string",
"id": "string",
"name": "string",
"price": "string",
"status": "string",
"store_id": 0,
"test": true,
"updated_at": "string"
}