v1

latestOpenAPI 3.0.02026-07-24900287.5 KB
Webhooks

Create Webhook Config

This API is creates a webhook config.

post/webhook_configs

Request body

namestring required
topicstring required
actionstring required
activeboolean
callbackstring required
secretstring

Example request

{
  "name": "Webhook Config Test",
  "topic": "activity",
  "action": "created",
  "callback": "http://callback.me"
}

Response

Post Webhook Config Reponse

Example response

{
  "webhook": {
    "created_at": "2023-10-31 23:59:59",
    "modified_at": "2023-10-31 23:59:59"
  }
}