POST
/
v1
/
prompts
/
create
curl --request POST \
  --url https://api.vocode.dev/v1/prompts/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "content": "<string>",
  "collect_fields": [
    {
      "field_type": "field_type_email",
      "label": "<string>",
      "name": "<string>",
      "description": "<string>"
    }
  ],
  "context_endpoint": "<string>",
  "prompt_template": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "content": "<string>",
  "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": "<string>",
    "required_context_keys": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
headerrequired

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

Body

application/json
content
string
default:
collect_fields
object[]
context_endpoint
string
prompt_template

Response

200 - application/json
id
string
required
user_id
string
required
content
string
default:
collect_fields
object[]
context_endpoint
string
prompt_template
object