Get Webhooks

GET /get-webhooks

Get list of webhooks

Request

Headers

An API Key is required to access this endpoint.

NameValue

x-api-key

your_api_key

Response

The API returns the response in JSON format.

Each response includes an array of webhooks. Each parameter has an id, headers, isEnabled, and url.

Example

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

Last updated