메인 콘텐츠로 건너뛰기
DELETE
/
api
/
v1
/
webhooks
/
{id}
Delete Webhook
curl --request DELETE \
  --url https://api.agentwallex.com/api/v1/webhooks/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "deleted": true
}

경로 매개변수

id
string
필수
삭제할 Webhook ID (예: whk_abc123).

예시

curl -X DELETE https://api.agentwallex.com/api/v1/webhooks/whk_abc123 \
  -H "X-API-Key: awx_your_api_key"

인증

X-API-Key
string
header
필수

API key authentication. Keys are prefixed with awx_.

경로 매개변수

id
string
필수

The webhook ID to delete (e.g., whk_abc123).

응답

Webhook deleted successfully.

id
string

The deleted webhook ID.

deleted
boolean

Confirmation of deletion.