Skip to content

List

List event subscriptions
get/v1/event_subscriptions

List all the event subscriptions.

Query Parameters
ending_beforestring
optional

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

page_sizenumber
optional

Page size (for pagination).

maximum100
minimum1
starting_afterstring
optional

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

Returns
dataarray of tokenstringdescriptionstringdisabledbooleanurlstringevent_typesarray of enumEventSubscription
has_moreboolean
Request example Request
curl https://api.lithic.com/v1/event_subscriptions \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "data": [
    {
      "token": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga1",
      "description": "description",
      "disabled": true,
      "url": "https://example.com",
      "event_types": [
        "account_holder.created"
      ]
    }
  ],
  "has_more": true
}