cURL
curl --request GET \ --url https://api.ngrok.com/event_subscriptions \ --header 'Authorization: Bearer <token>' \ --header 'ngrok-version: <ngrok-version>'
{ "event_subscriptions": [ { "id": "<string>", "uri": "<string>", "created_at": "<string>", "metadata": "<string>", "description": "<string>", "sources": [ { "type": "<string>", "uri": "<string>" } ], "destinations": [ { "id": "<string>", "uri": "<string>" } ] } ], "uri": "<string>", "next_page_uri": "<string>" }
List this Account’s Event Subscriptions.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List this Account's Event Subscriptions.
The list of all Event Subscriptions on this account.
Show child attributes
Unique identifier for this Event Subscription.
URI of the Event Subscription API resource.
When the Event Subscription was created (RFC 3339 format).
Arbitrary customer supplied information intended to be machine readable. Optional, max 4096 chars.
Arbitrary customer supplied information intended to be human readable. Optional, max 255 chars.
Sources containing the types for which this event subscription will trigger
Type of event for which an event subscription will trigger
URI of the Event Source API resource.
Destinations to which these events will be sent
a resource identifier
a uri for locating a resource
URI of the Event Subscriptions list API resource.
URI of next page, or null if there is no next page.
Was this page helpful?