Skip to main content
POST
/
api
/
v1
/
outbound_webhook
Create Webhook
curl --request POST \
  --url 'https://api.example.com/api/v1/outbound_webhook?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "endpoint": "<string>",
  "name": "<string>",
  "enabled": true
}
'
{
  "message": "Data created successfully",
  "meta": {},
  "data": {
    "endpoint": "<string>",
    "name": "<string>",
    "enabled": true
  }
}

Authorizations

api_key
string
query
required

Your API key for authentication. You can generate it from the Settings page. Format: starts with in-.

Body

application/json
endpoint
string | null
required
name
string | null
required
enabled
boolean | null
default:true

Response

Successful Response

message
string | null
default:Data created successfully
meta
Meta · object
data
IWebhookCreate · object