Webhooks
List your webhook endpoint configurations
Experimental. This endpoint is still settling — its request and response shape may change without a deprecation cycle.
Returns the webhook endpoints configured for the authenticated client and the event types each one is subscribed to. Configuration is managed by Firsty, so contact support to add, change or remove an endpoint. Signing secrets are never returned here; each is issued once, when its endpoint is created.
An endpoint with active false is still configured but is delivered nothing.
/webhook-configsAuthorization
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
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 | nullrequiredLabel set by Firsty when the endpoint was configured.
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 key403Forbidden - client does not have access to this resource429Rate limit exceeded500Internal server error