curl --request GET \
--url https://api.vida.dev/api/v2/webhookRelay
{
"success": true,
"message": "Webhook Relay configurations fetched successfully.",
"configs": [
{
"type": "twilioSMS",
"url": "https://hooks.myapp.com/inbound/twilio",
"timeout": 5000,
"headers": [
{
"Authorization": "Bearer xyz"
}
],
"successStatusCodes": [
200,
202
]
}
]
}
Fetch the complete set of webhook relay settings configured on your account.
curl --request GET \
--url https://api.vida.dev/api/v2/webhookRelay
{
"success": true,
"message": "Webhook Relay configurations fetched successfully.",
"configs": [
{
"type": "twilioSMS",
"url": "https://hooks.myapp.com/inbound/twilio",
"timeout": 5000,
"headers": [
{
"Authorization": "Bearer xyz"
}
],
"successStatusCodes": [
200,
202
]
}
]
}
Vida API Token
At least one relay configuration found
The response is of type object
.