Skip to main content
POST
/
agents
/
submit-to-assistant
Submit To Assistant
curl --request POST \
  --url https://api.example.com/agents/submit-to-assistant/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "assistant_name": "<string>",
  "new_message": "<string>",
  "conversation_id": "<string>",
  "conversation_ctx": {
    "entities": []
  }
}
'
{}

Authorizations

Authorization
string
header
required

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

Headers

Api-key
string | null

Body

application/json
assistant_name
string
required
new_message
string
required
conversation_id
string
required
conversation_ctx
ConversationContext · object

Response

Successful Response

The response is of type Response Submit To Assistant Agents Submit To Assistant Post · object.