版本:202201
更新 Webhook
PUT/openapi/2022-01/webhooks/:id
通过 Webhook ID 更新指定的 Webhook。
请求
Path参数
id string必填
Webhook ID。
- application/json
- 请求体
- 示例
请求体
addressstring
Webhook notification URL, e.g. https://example.com/webhook
topicstring
Event name, e.g. orders/cancelled,orders/create
{
"address": "string",
"topic": "string"
}
响应
- 200
- 422
200
- application/json
- 数据结构
- 示例
- Result
数据结构
webhook object
idstring
示例:
37593634-c272-4ed5-9096-1a4f1212125eaddressstring
示例:
https://abc.comtopicstring
示例:
order/createcreated_atstring
示例:
2018-08-26T06:50:00Zupdated_atstring
示例:
2018-08-26T06:50:00Zformatstring
示例:
json{
"webhook": {
"id": "37593634-c272-4ed5-9096-1a4f1212125e",
"address": "https://abc.com",
"topic": "order/create",
"created_at": "2018-08-26T06:50:00Z",
"updated_at": "2018-08-26T06:50:00Z",
"format": "json"
}
}
{
"webhook": {
"id": "37593634-c272-4ed5-9096-1a4f1212125e",
"address": "https://abc.com",
"topic": "order/create",
"created_at": "2018-08-26T06:50:00Z",
"updated_at": "2018-08-26T06:50:00Z",
"format": "json"
}
}
422
- application/json
- 数据结构
- 示例
- Result
数据结构
errors object
addressstring[]
topicstring[]
{
"errors": {
"address": [
"can't be blank"
],
"topic": [
"can't be blank"
]
}
}
{
"errors": {
"address": [
"can't be blank",
"is invalid"
],
"topic": [
"can't be blank"
]
}
}