Update Webhook Group
Updates an existing webhook group by its ID. You can modify the group name and the list of events it applies to.
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 update
1
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
Update 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"]