Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
Returns a generated scenario title based on chat history
curl --request GET \
--url https://api.open.cx/training/generate-scenario/{session_id} \
--header 'Authorization: Bearer <token>'
{
"title": "<string>"
}
Generate a custom training scenario title based on an existing chat session. This feature analyzes the conversation in a chat session and creates a title that captures the core customer issue or question, which can then be used as a starting point for creating a new custom training entry.
curl --request GET \
--url https://api.open.cx/training/generate-scenario/{session_id} \
--header 'Authorization: Bearer <token>'
{
"title": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Returns a generated scenario title based on chat history
Was this page helpful?