POST
/
chat
/
update
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"
}

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

Response

200
application/json
Chat successfully updated
result
string
Example:

"ok"

message
string
Example:

"Chat has been updated successfully"