GET
/
v1
/
prompts
curl --request GET \
  --url https://api.vocode.dev/v1/prompts \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "content": "",
  "collect_fields": [
    {
      "field_type": "field_type_email",
      "label": "<string>",
      "name": "<string>",
      "description": "<string>"
    }
  ],
  "context_endpoint": "<string>",
  "prompt_template": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "label": "",
    "required_context_keys": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

id
string
required

Response

200
application/json
Successful Response
id
string
required
user_id
string
required
content
string
default:
collect_fields
object[] | null
context_endpoint
string | null
prompt_template
object | null