Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Update public webhook endpoint

PATCH/v1/settings/developer/webhooks/endpoints/{endpointID}
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Path parameters
endpointIDstringrequired
Endpoint ID
Request body
requiredapplication/json
descriptionstring
enabledboolean
event_typesstring[] | null
urlstringrequired
Responses
200OK
created_atstring
descriptionstring
enabledbooleanrequired
event_typesstring[] | nullrequired
idstringrequired
masked_signing_secretstring
updated_atstring
urlstringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
403Forbidden
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
404Not Found
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X PATCH "/v1/settings/developer/webhooks/endpoints/string" \
  -H "Content-Type: application/json" \
  -d '{
  "description": "string",
  "enabled": true,
  "event_types": [
    "string"
  ],
  "url": "string"
}'
Response
{
  "created_at": "string",
  "description": "string",
  "enabled": true,
  "event_types": [
    "string"
  ],
  "id": "string",
  "masked_signing_secret": "string",
  "updated_at": "string",
  "url": "string"
}