delete_global_webhook
Remove a global webhook from the Multilead platform by specifying the URL and event subscriptions to stop receiving automated notifications.
Instructions
Delete a global webhook
This removes a specific global webhook by matching URL and event subscriptions.
Args: user_id: User ID account_id: Account ID array_of_actions: List of event action types the webhook was subscribed to array_of_ids: List of resource IDs associated with the webhook url: Webhook URL to delete
Returns: Success confirmation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| array_of_actions | Yes | ||
| array_of_ids | Yes | ||
| url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"array_of_actions": {
"items": {
"type": "string"
},
"type": "array"
},
"array_of_ids": {
"items": {
"type": "integer"
},
"type": "array"
},
"url": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"array_of_actions",
"array_of_ids",
"url"
],
"type": "object"
}