Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://api.sevalla.com/v3/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
      "company_id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
      "is_enabled": true,
      "allowed_events": [
        "APP_DEPLOY",
        "APP_CREATE"
      ],
      "secret": "whsec_abc123...",
      "old_secret": null,
      "old_secret_expired_at": null,
      "endpoint": "https://example.com/webhooks",
      "description": "Production deploy notifications",
      "created_by": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
      "updated_by": null,
      "created_at": "2025-01-30T00:00:00.000Z",
      "updated_at": "2025-01-30T00:00:00.000Z"
    }
  ],
  "total": 42,
  "offset": 0,
  "limit": 25
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token in the Authorization header.

Query Parameters

limit
integer
default:25

Maximum number of items per page

Required range: 1 <= x <= 100
Example:

25

offset
integer
default:0

Number of items to skip

Required range: 0 <= x <= 10000
Example:

0

Response

Default Response

data
object[]
required

List of items

total
integer
required

Total number of items matching the query

Required range: 0 <= x <= 10000
Example:

42

offset
integer
required

Current pagination offset

Required range: 0 <= x <= 10000
Example:

0

limit
integer
required

Current pagination limit

Required range: 1 <= x <= 100
Example:

25