GET
/
api
/
v2
/
webhookRelay
/
{type}
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
    ]
  }
}

Authorizations

token
string
query
required

Vida API Token

Path Parameters

type
string
required

Relay type to fetch (must match one of GET /webhookRelay/types)

Response

200
application/json

Relay configuration found

The response is of type object.