Skip to main content

模板更新回调

回调地址

  • 需要在 INCS 设置您的回调地址

回调请求方式

  • POST

回调内容

参数列表

参数名 类型 必传 描述
event string 回调事件名称: template_status_update, template_category_update, template_quality_update
new_value string 对应的新值
reason string 变更说明
received_at int(时间戳) 变更时间

回调示例

// 状态更新
{
  "event": "template_status_update",
  "new_value": "APPROVED",
  "reason": "",
  "received_at": 1754466101
}
// 类别更新
{
  "event": "template_category_update",
  "new_value": "MARKETING",
  "reason": "",
  "received_at": 1754466101
}
// 质量评分更新
{
  "event": "template_quality_update",
  "new_value": "YELLOW",
  "reason": "",
  "received_at": 1754466101
}