QamaqQamaq
PATCH

Webhookを更新

/webhooks/{webhook_id}

Webhookのプロパティを更新します。

パラメーター

パスパラメーター

名前タイプ説明
webhook_id必須
string

The webhook ID

リクエストボディ

application/json必須
{
name:string
url:string
events:string[]
secret:string
headers:object
is_active:boolean
}

コード例

curl -X PATCH "https://api.qamaq.io/api/v1/webhooks/{webhook_id}" \
  -H "Authorization: Bearer qmq_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"key": "value"}'

レスポンス

200Webhook updated successfully

Response Body

{
id:string
name:string
url:string
events:string[]
has_secret:boolean
headers:object
is_active:boolean
last_triggered_at:string (date-time)
last_status:string
failure_count:integer
created_at:string (date-time)
updated_at:string (date-time)
}