POST
/
v1
/
prompts
/
update
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "user_id": "550e8400-e29b-41d4-a716-446655440000",
  "label": "My Prompt",
  "description": "This is a description",
  "content": "You are a helpful assistant...",
  "context_endpoint": "https://api.example.com/context",
  "collect_fields": [
    "<string>"
  ],
  "type": "prompt",
  "tags": [
    "tag1",
    "tag2"
  ],
  "prompt_template": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "user_id": "550e8400-e29b-41d4-a716-446655440000",
    "required_context_keys": [
      "tag1",
      "tag2"
    ],
    "label": "My Prompt"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

id
string
required

Body

application/json
label
string
Example:

"My Prompt"

description
string
Example:

"This is a description"

content
string
Example:

"You are a helpful assistant..."

context_endpoint
string
Example:

"https://api.example.com/context"

collect_fields
string[]
deprecated
type
enum<string>
Available options:
prompt,
block
Example:

"prompt"

tags
string[]
Example:
["tag1", "tag2"]
prompt_template
object
deprecated

Response

201
application/json
id
string
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

user_id
string
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

label
string
Example:

"My Prompt"

description
string
Example:

"This is a description"

content
string
Example:

"You are a helpful assistant..."

context_endpoint
string
Example:

"https://api.example.com/context"

collect_fields
string[]
deprecated
type
enum<string>
Available options:
prompt,
block
Example:

"prompt"

tags
string[]
Example:
["tag1", "tag2"]
prompt_template
object
deprecated