GET
/
webhooks
List all webhooks
curl --request GET \
  --url https://api.cloudglue.dev/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<string>",
      "object": "webhook",
      "created_at": 123,
      "webhook_secret": "<string>",
      "endpoint": "<string>",
      "active": true,
      "description": "<string>",
      "subscribed_events": [
        "describe.job.processing"
      ]
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:50

Maximum number of webhooks to return

Required range: x <= 100
offset
integer
default:0

Number of webhooks to skip

order
enum<string>
default:created_at

Order the webhooks by a specific field

Available options:
created_at
sort
enum<string>
default:desc

Sort the webhooks in ascending or descending order

Available options:
asc,
desc

Response

A list of webhooks

object
enum<string>
required

Object type, always 'list'

Available options:
list
data
object[]
required

Array of webhook objects

total
integer
required

Total number of webhooks matching the query

limit
integer
required

Number of items returned in this response

offset
integer
required

Offset from the start of the list