List available event typesv3.1

GET
/api/v3.1/webhook_subscriptions/event_types

Returns all event types that can be subscribed to, along with their supported webhook versions.

Authorization

ApiKeyAuth
x-api-key<token>

Project API key authentication

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v3.1/webhook_subscriptions/event_types"
{  "items": [    {      "event_type": "string",      "description": "string",      "supported_versions": [        "V1"      ]    }  ]}