Querio
Embed QuerioEmbedded API

Continue a conversation

POST
/v2/embed/{customer_slug}/conversations/{conversationId}/turns
AuthorizationBearer <token>

Include your API token in the Authorization header:

Authorization: Bearer <token>

Tokens are created in the Querio workspace settings under Embedded > API Tokens.

In: header

Path Parameters

customer_slugstring

Customer slug that maps to a workspace and agent configuration.

conversationIdstring

Conversation identifier.

Formatuuid
promptstring

Follow-up question.

Response Body

curl -X POST "https://app.querio.ai/api/v2/embed/dunder-mifflin/conversations/38770bb6-b14b-405c-aed6-71e8849c77dc/turns" \  -H "Content-Type: application/json" \  -d '{    "prompt": "Break that down by status"  }'
Empty

{
  "error": "Missing or invalid Authorization header",
  "message": "No Bearer token or invalid token"
}

{
  "error": "Token does not have access to this consumer",
  "message": "Token workspace does not match consumer"
}

{
  "error": "ConversationNotFoundError",
  "message": "Conversation does not exist or is not in this workspace"
}

{
  "error": "ConversationConflictError",
  "message": "Conversation is currently processing a turn"
}