Skip to main content
GET
/
v3
/
webhook
/
destinations
/
{destination_uuid}
Get Webhook Destination
curl --request GET \
  --url https://verification.didit.me/v3/webhook/destinations/{destination_uuid}/ \
  --header 'x-api-key: <api-key>'
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "label": "<string>",
  "url": "<string>",
  "enabled": true,
  "webhook_version": "v1",
  "secret_shared_key": "<string>",
  "subscribed_events": [
    "status.updated",
    "data.updated"
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "summary": {
    "total_deliveries": 123,
    "failed_deliveries": 123,
    "error_rate_percentage": 123,
    "min_response_time_ms": 123,
    "avg_response_time_ms": 123,
    "max_response_time_ms": 123,
    "last_delivery_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.didit.me/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Path Parameters

destination_uuid
string<uuid>
required

Response

200 - application/json

Webhook destination.

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

Event filter for this webhook destination. Didit delivers only webhooks whose webhook_type exactly matches one of these values. Include at least one event; there is no wildcard subscription.

Minimum array length: 1

Supported webhook event name. Use these exact strings in subscribed_events; unsupported values are rejected.

Available options:
status.updated,
data.updated,
user.status.updated,
user.data.updated,
business.status.updated,
business.data.updated,
activity.created,
transaction.created,
transaction.status.updated
Example:
["status.updated", "data.updated"]
created_at
string<date-time>
updated_at
string<date-time>
summary
object