Webhooks
List Webhooks
API Documentation
Authorization
Agents
Phone Numbers
SIP
Messaging
Knowledge
Accounts
Billing
Webhooks
List Webhooks
List all your existing webhook destinations.
GET
/
api
/
v2
/
webhooks
curl --request GET \
--url https://api.vida.dev/api/v2/webhooks
{
"success": true,
"message": "Success",
"webhooks": [
{
"userId": 3,
"label": "Zapier Hook",
"timestamp": 1678829072,
"url": "https://hooks.zapier.com/hooks/catch/123456/abcdef",
"type": "call"
}
]
}
Authorizations
Vida API Token
Response
200
application/json
Successful response
Example:
true
Example:
"Success"
User Id
Example:
3
Friendly label for webhook
Example:
"Zapier Hook"
Timestamp when created
Example:
1678829072
Webhook URL
Example:
"https://hooks.zapier.com/hooks/catch/123456/abcdef"
Webhook type
Example:
"call"
curl --request GET \
--url https://api.vida.dev/api/v2/webhooks
{
"success": true,
"message": "Success",
"webhooks": [
{
"userId": 3,
"label": "Zapier Hook",
"timestamp": 1678829072,
"url": "https://hooks.zapier.com/hooks/catch/123456/abcdef",
"type": "call"
}
]
}