Integrations
Create Webhook Destination
This endpoint creates a new webhook destination. A webhook destination is a URL where webhook payloads will be sent.
post/organizations/{orgId}/integrationdestinations/webhooks
Path parameters
orgIdstring required
The unique identifier (UUID) for the organization. This specifies the organization within which the webhook destination is created.
Request body
Example request
{
"credentials": {
"name": "Integration Credentials",
"apiKey": "api key",
"secret": "api secret"
}
}Response
Returns the DestinationCreateRequest
Example response
{
"credentials": {
"apiKey": "api key",
"secret": "api secret"
}
}