GET
/
get-webhooks
curl --request GET \
  --url https://api.getomni.ai/get-webhooks \
  --header 'x-api-key: <api-key>'
{
  "webhooks": [
    {
      "id": "6901b859-fe94-4c3c-a826-a4d484f309a6",
      "headers": [
        {
          "key": "Authorization",
          "value": "Bearer your_token_here"
        }
      ],
      "isEnabled": true,
      "url": "https://your-webhook-url.com"
    }
  ]
}

Get list of webhooks

Response

webhooks
array
{
  "webhooks": [
    {
      "id": "6901b859-fe94-4c3c-a826-a4d484f309a6",
      "headers": [
        {
          "key": "Authorization",
          "value": "Bearer your_token_here"
        }
      ],
      "isEnabled": true,
      "url": "https://your-webhook-url.com"
    }
  ]
}