API Documentation
Agents
Phone Numbers
SIP
Messaging
Webhooks
Knowledge
Accounts
- POSTCreate a new reseller
- GETList resellers
- POSTCreate a new organization
- DELDelete an organization
- GETList organizations
- GETList agent accounts
- POSTCreate a new account
- DELDelete an account
- GETList admin users
- DELDelete admin user
- POSTInvite admin user
- GETFetch Account by externalAccountId
- POSTUpdate Organization Settings
Billing
Webhooks
List supported Webhook Relay types
Returns every webhook relay type that can be configured for your account (e.g., Twilio SMS, Chargebee, etc.).
GET
/
api
/
v2
/
webhookRelay
/
types
List supported Webhook Relay types
Copy
Ask AI
curl --request GET \
--url https://api.vida.dev/api/v2/webhookRelay/types
Copy
Ask AI
{
"success": true,
"message": "Webhook Relay types fetched successfully",
"types": [
{
"name": "twilioSMS",
"description": "Proxy inbound Twilio SMS webhooks to your app first before agent processes them."
}
]
}
Authorizations
Vida API Token
Response
200
application/json
Relay types fetched successfully
The response is of type object
.
List supported Webhook Relay types
Copy
Ask AI
curl --request GET \
--url https://api.vida.dev/api/v2/webhookRelay/types
Copy
Ask AI
{
"success": true,
"message": "Webhook Relay types fetched successfully",
"types": [
{
"name": "twilioSMS",
"description": "Proxy inbound Twilio SMS webhooks to your app first before agent processes them."
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.