Prompts
List Prompts
GET
/
v1
/
prompts
/
list
curl --request GET \
--url https://api.vocode.dev/v1/prompts/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"collect_fields": [],
"content": "<string>",
"context_endpoint": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"prompt_template": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"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/prompts/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"collect_fields": [],
"content": "<string>",
"context_endpoint": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"prompt_template": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"page": 123,
"size": 123
}