Skip to main content
PATCH
/
v3
/
webhook
/
destinations
/
{destination_uuid}
Update Webhook Destination
curl --request PATCH \
  --url https://verification.didit.me/v3/webhook/destinations/{destination_uuid}/ \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "label": "<string>",
  "url": "<string>",
  "enabled": true,
  "webhook_version": "v1",
  "subscribed_events": [
    "<string>"
  ]
}
'
{}

Authorizations

x-api-key
string
header
required

Path Parameters

destination_uuid
string<uuid>
required

Body

application/json
label
string
url
string<uri>
enabled
boolean
webhook_version
enum<string>
Available options:
v1,
v2,
v3
subscribed_events
string[]

Response

200 - application/json

Updated webhook destination.

The response is of type object.