Authorizations
Vida API Token
Path Parameters
Relay type to fetch (must match one of GET /webhookRelay/types)
curl --request GET \
--url https://api.vida.dev/api/v2/webhookRelay/{type}
{
"success": true,
"message": "Webhook Relay configuration fetched successfully.",
"config": {
"url": "https://hooks.myapp.com/inbound/twilio",
"timeout": 5000,
"headers": [
{
"Authorization": "Bearer xyz"
}
],
"successStatusCodes": [
200,
202
]
}
}
Fetch the current webhook relay settings for the given type (e.g., Twilio SMS, Chargebee) for your account.
curl --request GET \
--url https://api.vida.dev/api/v2/webhookRelay/{type}
{
"success": true,
"message": "Webhook Relay configuration fetched successfully.",
"config": {
"url": "https://hooks.myapp.com/inbound/twilio",
"timeout": 5000,
"headers": [
{
"Authorization": "Bearer xyz"
}
],
"successStatusCodes": [
200,
202
]
}
}
Vida API Token
Relay type to fetch (must match one of GET /webhookRelay/types)