Skip to main content
POST
/
v1
/
webhook_endpoints
Create a webhook endpoint (API Key)
curl --request POST \
  --url https://api.example.com/v1/webhook_endpoints \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://example.com/webhook",
  "description": "Production webhook"
}
'

Body

application/json
url
string
required

Webhook endpoint URL

Example:

"https://example.com/webhook"

description
string

Webhook endpoint description

Example:

"Production webhook"

Response

Webhook endpoint created successfully