Query
query SubscriptionEventTypes {
subscriptionEventTypes {
eventType
description
}
}Response
{
"data": {
"subscriptionEventTypes": [
{
"eventType": "string",
"description": "string"
}
]
}
}Queries
subscriptionEventTypes
List every event type that can be subscribed to on a webhook target. Each entry includes the event type identifier and a human-readable description. Use this to discover valid values for eventSubscriptions when creating or updating a webhook target. Requires the subscriptionEventTypes:read permission.
QUERY
subscriptionEventTypes: [SubscriptionEventType!]!Returns
eventType
String!
The event type identifier used in webhook target subscriptions (e.g. 'thread.thread_created').
description
String!
Query
query SubscriptionEventTypes {
subscriptionEventTypes {
eventType
description
}
}Response
{
"data": {
"subscriptionEventTypes": [
{
"eventType": "string",
"description": "string"
}
]
}
}Was this page helpful?

