Makes a bot send a text message.
A message to send can be written in multiple languages.
Then, it will be displayed in the language that matches the client device's language settings.
| Parameter | Type | Required | Description |
|---|---|---|---|
| type | string | Y | Set this parameter to "text". |
| text | string | Y | Message content Maximum length: 2,000 characters |
| Parameter | Type | Required | Description |
|---|---|---|---|
| i18nTexts[] | array | N | List of multilingual text messages |
| i18nTexts[].language | string | Y | Language code • ko_KR • ja_JP • zh_CN • zh_TW • en_US |
| i18nTexts[].text | string | Y | Multilingual text message Maximum length: 2,000 characters |

{ "content": { "type": "text", "text": "hello" }}{ "content": { "type": "text", "text": "hello", "i18nTexts": [{ "language": "ja_JP", "text": "こんにちは" } "language": "ko_KR", "text": "안녕하세요" }] }}