Webhooks

List all webhooks

Retrieve all webhooks configured for your account.

get/webhooks

Response

List of webhooks

successboolean

Example response

{
  "success": true,
  "webhooks": [
    {
      "_id": "507f1f77bcf86cd799439011",
      "name": "My Webhook",
      "url": "https://example.com/webhook",
      "events": [
        "post.published",
        "post.failed"
      ],
      "isActive": true
    }
  ]
}

Changes