- Docs
- Api%2Freference%2Fwebhooks%2FListWebhooks
Retrieve all webhooks
Get a list of registered webhooks.
In: header
Query Parameters
Filter resources by their unique identifier
Filter resources by their name or title
Search term for autocomplete functionality
How many items to return at one time (max 100)
int64Pagination token for retrieving the next page of results
Sort order for the results (ascending or descending)
"asc" | "desc"Field name to sort the results by
Filter webhooks by their type
"address_activity" | "template_activity" | "action_activity"Filter webhooks by template ID
Filter webhooks by action name
Filter webhooks by blockchain address
Filter webhooks by their active status
Filter webhooks by wallet ID
Filter webhooks created after this date and time
date-timeFilter webhooks created before this date and time
date-timeFilter webhooks created on or after this date and time
date-timeFilter webhooks created on or before this date and time
date-timeResponse Body
application/json
application/json
application/json
curl -X GET "https://api-testnet.dual.network/webhooks"{
"webhooks": [
{
"id": "string",
"name": "My Webhook",
"type": "template_activity",
"wallet_id": "string",
"url": "https://webhook.site/example",
"is_active": true,
"addresses": [
"0x1234567890abcdef1234567890abcdef12345678"
],
"template_ids": [
"tmpl_xxxx123456"
],
"actions": [
"action_xxxx123456"
],
"when_created": "2021-01-01T00:00:00Z",
"when_modified": "2021-01-01T00:00:00Z"
}
],
"next": "string"
}{
"code": 0,
"message": "string",
"details": {}
}{
"code": 0,
"message": "string",
"details": {}
}