Create Webhook Group
Creates a new webhook group. Specify the group name and assign it to one or more events. After creating the group, use the Create Webhook endpoint to add individual webhook configurations to it.
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}.
Body
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"]Response
Create Object
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"]