Webhooks
List Webhooks
GET
/
v1
/
webhooks
/
list
curl --request GET \
--url https://api.vocode.dev/v1/webhooks/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"method": "GET",
"subscriptions": [],
"url": "<string>",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"page": 123,
"size": 123
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
page
integer
default: 1size
integer
default: 10Response
200 - application/json
has_more
boolean
requireditems
object[]
requiredpage
integer
requiredsize
integer
requiredcurl --request GET \
--url https://api.vocode.dev/v1/webhooks/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"method": "GET",
"subscriptions": [],
"url": "<string>",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"page": 123,
"size": 123
}