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.
/management/webhooksAuthorization
Authorization: Bearer {token} — an OAuth2 access token from the client-credentials flow. How authentication works
Query parameters
limitintegerMaximum number of items to return (1-100)
20cursorstringOpaque cursor token for fetching the next page. Pass the nextCursor value from a previous response.
Responses
200List of webhook endpoint configurationsapplication/jsonShow response bodyHide response body
dataarray of WebhookConfigrequiredShow propertiesHide properties
webhookEndpointReferencestringrequiredIdentifies the endpoint in GET /management/webhooks/{webhookEndpointReference}/deliveries.
urlstring · urirequiredDestination Firsty posts events to.
eventTypesarray of stringrequiredEvent 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 | nullrequiredFree-text label for the endpoint.
activebooleanrequiredWhether events are delivered to this endpoint.
createdAtstring · date-timerequiredupdatedAtstring · date-timerequiredpaginationobjectShow propertiesHide properties
limitintegerrequiredMaximum items per page
hasMorebooleanrequiredWhether there are more items after this page
nextCursorstring | nullrequiredOpaque 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