Get all subscription event types

Use GET {URI}/webhooks/eventtypes to retrieve information about a specific event type or list of supported event types:

EndpointPurpose
GET {URI}/webhooks/eventtypesTo get the event types of all your webhook subscriptions.

The following query parameters are used to paginate the results. Use these query parameters with GET {URI}/webhooks/eventtypes webhook to list the type of events available in your subscriptions:

Query paramsData typeRequirementDescription
prevCursorstringoptionalThe cursor to use for the previous page of results. This will be ignored if paginate is false.
nextCursorstringoptionalThe cursor to use for the next page of results. This will be ignored if paginate is false.
maxResultsint32 defaults to 10optionalThe maximum number of results to return. It must be an integer up to 200. The default is 10. maxResults will be ignored if paginate is false.
categorystringoptionalSpecify the category to return

Here's the response example for when you use GET {URI}/webhooks/eventtypes :

{
  "prevCursor": "T1JERVI=",
  "nextCursor": "UkVXQVJE",
  "prevPageAvailable": true,
  "nextPageAvailable": false,
  "maxResults": 10,
  "items": [
    {
      "category": "ORDER",
      "eventTypes": [
        "LineItemDeliveryStatus"
      ]
    },
    {
      "category": "ITEM",
      "eventTypes": [
        "ItemAvailability"
      ]
    },
    {
      "category": "ACCOUNT",
      "eventTypes": [
        "Transaction",
        "LowBalance",
        "AccountStatus"
      ]
    },
    {
      "category": "REWARD",
      "eventTypes": [
        "RewardStatus"
      ]
    }
  ],
  "numberOfElements": 4
}

The possible response codes for this endpoint are as follows. For details, see i18nkey codes and their error messages:

ResponseDescription
200The request was successful.
400The server could not understand the request due to invalid syntax.
401Authentication is required and has either not been provided or failed.
403The server understood the request but refuses to authorize it.
404The server could not find the requested resource. In other words, the URL you’re trying to access doesn’t point to anything that exists on the server.


© 2026 Tango API are provided by Tango, a division of BHN, Inc.