Actions
List Actions
GET
/
v1
/
actions
/
list
curl --request GET \
--url https://api.vocode.dev/v1/actions/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"config": {
"phone_number": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "action_transfer_call",
"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[]
requiredTransferCallAction
EndConversationAction
DTMFAction
page
integer
requiredsize
integer
requiredcurl --request GET \
--url https://api.vocode.dev/v1/actions/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"config": {
"phone_number": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "action_transfer_call",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"page": 123,
"size": 123
}