POST
/
webhooks
curl --request POST \
  --url https://api.kakiyo.com/v1/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "CRM Integration",
  "url": "https://your-app.com/kakiyo/webhook",
  "secret": "your_webhook_secret",
  "events": [
    "linkedin.message.received",
    "prospect.qualification.manual"
  ]
}'
{
  "id": "webhook_12345abcde",
  "name": "CRM Integration",
  "url": "https://your-app.com/kakiyo/webhook",
  "events": [
    "linkedin.message.received",
    "prospect.qualification.manual"
  ],
  "active": true,
  "message": "Webhook created successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Webhook to create

The body is of type object.

Response

201
application/json

Webhook created successfully

The response is of type object.