Skip to main content
POST
/
chat
/
update
Update chat participants
curl --request POST \
  --url https://api.qtzl.ai/chat/update \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "chat_id": "<string>",
  "participants": [
    {
      "id": "<string>",
      "locale": "<string>",
      "name": "<string>"
    }
  ]
}
'
{
  "result": "ok",
  "message": "Chat has been updated successfully"
}

Documentation Index

Fetch the complete documentation index at: https://quetzal.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Update an existing chat. When participant locales are updated, all messages previously added will be translated to ensure they are readable in any new locales.

Authorizations

api-key
string
header
required

API key authentication. You can obtain your API key by registering on your project dashboard.

Body

application/json
chat_id
string
required

Quetzal chat ID (ex: QTZLC001) or external ID of the chat

participants
object[]
required

List of participants to update

Minimum array length: 1

Response

Chat successfully updated

result
string
Example:

"ok"

message
string
Example:

"Chat has been updated successfully"