Skip to content

List webhook endpoints

Request

Retrieve all configured webhook endpoints.

Security
PartnerApiKey and PartnerOAuth
Query
activeboolean

Filter by active status (true/false)

sortBystring(?i)CREATED_DATE|URL|NAME

Sort by field

Default:"CREATED_DATE"
Enum:"CREATED_DATE""URL""NAME"
sortDirstring(?i)ASC|DESC

Sort direction

Default:"DESC"
Enum:"ASC""DESC"
cursorstring, [ 0 .. 2048 ] characters

Pagination cursor from previous response

limitinteger, (int32), [ 1 .. 1000 ]

Number of results per page (max 1000)

Default:20
Example:limit=20
curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/webhook?active=true&sortBy=CREATED_DATE&sortDir=ASC&cursor=string&limit=20' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Webhook endpoints retrieved successfully

Bodyapplication/json
itemsArray of objects(WebhookEndpointDTO)

List of webhook endpoints on the current page

nextCursorstring

Opaque cursor for fetching the next page. Null if no more results.

Response
{ "items": [ {} ], "nextCursor": "string" }