Makes a bot send a link 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 "link". |
| contentText | string | Y | Body text Maximum length: 1,000 characters |
| linkText | string | Y | Link text Maximum length: 1,000 characters |
| link | string | Y | The page to be redirected to when the linkText area is pressed. Maximum length: 1,000 characters |
| Parameter | Type | Required | Description |
|---|---|---|---|
| i18nContentTexts[] | array | N | List of multilingual body texts |
| i18nContentTexts[].language | string | Y | Language code • ko_KR • ja_JP • zh_CN • zh_TW • en_US |
| i18nContentTexts[].contentText | string | Y | Multilingual body text Maximum length: 1,000 characters |
| i18nLinkTexts[] | array | N | List of multilingual link texts |
| i18nLinkTexts[].language | string | Y | Language code • ko_KR • ja_JP • zh_CN • zh_TW • en_US |
| i18nLinkTexts[].linkText | string | Y | Multilingual link text Maximum length: 1,000 characters |

{ "content": { "type": "link", "contentText": "content text", "linkText": "link text", "link": "https://example.com" }}{ "content": { "type": "link", "contentText": "content text", "i18nContentTexts": [{ "language": "ja_JP", "contentText": "コンテンツテキスト" } "language": "ko_KR", "contentText": "컨텐츠 텍스트" } "linkText": "link area", "i18nLinkTexts": [{ "language": "ja_JP", "linkText": "リンクテキスト" } "language": "ko_KR", "linkText": "링크 텍스트" }], "link": "https://example.com" }}