Firsty

Search...

Search...

Management

List webhook endpoints

Experimental. This endpoint is still settling — its request and response shape may change without a deprecation cycle.

Lists the endpoints Firsty delivers events to and the event types each one is subscribed to. Signing secrets are issued once, when an endpoint is created. Inactive endpoints keep their configuration and receive no events.

get/management/webhooks

Authorization

Authorization: Bearer {token} — an OAuth2 access token from the client-credentials flow. How authentication works

Query parameters

limitinteger

Maximum number of items to return (1-100)

Default20
cursorstring

Opaque cursor token for fetching the next page. Pass the nextCursor value from a previous response.

Responses

200List of webhook endpoint configurationsapplication/json
Show response body
dataarray of WebhookConfigrequired
Show properties
webhookEndpointReferencestringrequired

Identifies the endpoint in GET /management/webhooks/{webhookEndpointReference}/deliveries.

urlstring · urirequired

Destination Firsty posts events to.

eventTypesarray of stringrequired

Event types delivered to this endpoint. Values this client subscribed to before an event type was retired are returned as stored, so an entry may be absent from GET /catalog/webhook-event-types.

descriptionstring | nullrequired

Free-text label for the endpoint.

activebooleanrequired

Whether events are delivered to this endpoint.

createdAtstring · date-timerequired
updatedAtstring · date-timerequired
paginationobject
Show properties
limitintegerrequired

Maximum items per page

hasMorebooleanrequired

Whether there are more items after this page

nextCursorstring | nullrequired

Opaque cursor token for the next page. Null when there are no more results.

400Bad request - invalid parameters401Unauthorized - missing or invalid API key429Rate limit exceeded500Internal server error