Get One Webhook Group
Retrieves a single webhook group by its ID, including the group name, associated event IDs, and the list of webhooks it contains.
Authorizations
OAuth 2.0 bearer token obtained from POST /oauth2/token. Tokens expire after 30 minutes. Include in the Authorization header as Bearer {access_token}.
Path Parameters
integer - required - The ID of the Webhook Group you want to get
1
Query Parameters
string - optional - Comma separated list of fields you want to return
"id,name,headers,notification_emails,created_at,created_by,updated_at,updated_by"
Response
Get Webhook Group
The name of the webhook group. This value must be unique.
"Sample Webhook Group"
A list of key-value pairs representing headers for the webhook group.
[
{
"key": "Authentication",
"value": "Bearer Token"
},
{
"key": "Content-Type",
"value": "application/json"
}
]Notification email list for failure alerts.
A list of email addresses to be notified if any webhook within the group fails.
["notify@example.com", "test@example.com"]