list_webhooks
Retrieve all non-global webhooks configured for your Multilead account to monitor and manage webhook integrations for lead management and email campaigns.
Instructions
List non-global webhooks
This retrieves all non-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 non-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"
}