list_global_webhooks
Retrieve all global webhooks configured for your account to monitor and manage automated data flows across the Multilead platform.
Instructions
List global webhooks
This retrieves all global webhooks configured for the account.
Args: user_id: User ID account_id: Account ID limit: Maximum number of results to return (default: 30) offset: Pagination offset (default: 0)
Returns: List of global webhooks
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| limit | No | ||
| offset | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"limit": {
"default": 30,
"type": "integer"
},
"offset": {
"default": 0,
"type": "integer"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id"
],
"type": "object"
}