Skip to main content
PUT
/
api
/
v2
/
chatbots
/
{chatbotId}
/
translations
/
{language}
Bulk update translations
curl --request PUT \
  --url https://app.livechatai.com/api/v2/chatbots/{chatbotId}/translations/{language} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "translations": [
    {
      "key": "newMessageToast",
      "value": "Neue Nachricht!"
    }
  ]
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chatbotId
string
required

Unique identifier of the chatbot

Example:

"clx1234567890abcdef"

language
string
required

Language to update (predefined enum or custom uppercase identifier)

Example:

"GERMAN"

Body

application/json
translations
object[]
required

Response

Translations updated successfully