PUT
/
orchestrate
/
agents
/
{id}
/
chat-starter-settings
curl --request PUT \
  --url http://localhost/api/v1/orchestrate/agents/{id}/chat-starter-settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "starter_prompts": {
    "customize": [
      {
        "id": "<string>",
        "title": "<string>",
        "subtitle": "<string>",
        "prompt": "<string>",
        "state": "<string>"
      }
    ]
  },
  "welcome_content": {
    "welcome_message": "<string>",
    "description": "<string>"
  }
}'
"<any>"

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json

A specification for chat starter settings within an agent

Response

200
application/json

Successful Response

The response is of type any.