Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://api.tickable.io/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
      "url": "https://api.example.com/webhook",
      "event_types": [
        "order.created"
      ],
      "description": "Order notifications",
      "created_at": "2024-03-13T12:00:00Z"
    }
  ],
  "pagination": {
    "total": 142,
    "limit": 25,
    "offset": 0,
    "has_more": true
  }
}

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

Webhooks:Read: Always required.

Authorizations

Authorization
string
header
required

Pass as Authorization: Bearer {token}. Accepts either an OAuth2 JWT access token or an API key (tk_live_...) created from the Tickable dashboard.

Query Parameters

limit
integer

Max results per page (default 25, max 100)

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

25

offset
integer | null

Number of results to skip

Required range: x >= 0
Example:

0

sort
string

Sort field and direction, e.g. created_at:desc

Example:

"created_at:desc"

Response

200 - application/json

Paginated list of webhooks

data
object[]
required
pagination
object
required