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": []
}
}
'{}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": []
}
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
The response is of type Response Submit To Assistant Agents Submit To Assistant Post · object.