Alimtalk
This is Kakao Biz Message Alimtalk. It requires a pre-registered template code and a sender profile key.
alimtalkAlimtalk
A template-based Kakao channel for informational messages.
Template pre-approvalSender profile keyButton and highlight optionsSMS Fallback
Input fields
| Column | Required | Description |
|---|---|---|
channel_order | ✅ | 'alimtalk' |
kko_sender_key | ✅ | Sender profile key |
kko_template_code | ✅ | Template code |
kko_content | ✅ | Message content (including substitution of the template variables #{변수명}) |
recipient | ✅ | Recipient number |
msg_status | ✅ | '1' |
request_date | ✅ | Send request time |
kko_msg_type | AT: standard Alimtalk, AI: image Alimtalk | |
kko_option | Options such as buttons, images, and highlight text (JSON) |
kko_option structure
| Key | Type | Description |
|---|---|---|
attachment.button | Array | Button list |
attachment.image | Object | Image (AI type) |
title | String | Highlight title |
header | String | Header text |
supplement | Object | Supplementary information (quick reply and so on) |
Button types
| type | Description |
|---|---|
WL | Web link |
AL | App link |
AC | Add channel |
DS | Delivery tracking |
BK | Bot keyword |
MD | Message forwarding |
Examples
Basic form (no buttons)
SQL
INSERT INTO msg_tran (
channel_order, request_date, callback, recipient,
kko_msg_type, kko_content, kko_sender_key, kko_template_code, msg_status
) VALUES (
'alimtalk', NOW(), '발신번호', '수신번호',
'AT', '메시지 내용', '발신프로필키', '템플릿코드', '1'
);
With a button — WL (web link)
SQL
INSERT INTO msg_tran (
channel_order, request_date, callback, recipient,
kko_msg_type, kko_content, kko_sender_key, kko_template_code, kko_option, msg_status
) VALUES (
'alimtalk', NOW(), '발신번호', '수신번호',
'AT', '메시지 내용', '발신프로필키', '템플릿코드',
'{
"attachment": {
"button": [
{
"name": "웹링크 버튼명",
"type": "WL",
"urlMobile": "https://www.bizgo.io/",
"urlPc": "https://www.bizgo.io/"
}
]
}
}',
'1'
);
With a button — AL (app link)
SQL
INSERT INTO msg_tran (
channel_order, request_date, callback, recipient,
kko_msg_type, kko_content, kko_sender_key, kko_template_code, kko_option, msg_status
) VALUES (
'alimtalk', NOW(), '발신번호', '수신번호',
'AT', '메시지 내용', '발신프로필키', '템플릿코드',
'{
"attachment": {
"button": [
{
"name": "앱링크 버튼명",
"type": "AL",
"schemeAndroid": "bizgoapp://open",
"schemeIos": "bizgoapp://open"
}
]
}
}',
'1'
);
With a button — AC (add channel)
SQL
INSERT INTO msg_tran (
channel_order, request_date, callback, recipient,
kko_msg_type, kko_content, kko_sender_key, kko_template_code, kko_option, msg_status
) VALUES (
'alimtalk', NOW(), '발신번호', '수신번호',
'AT', '메시지 내용', '발신프로필키', '템플릿코드',
'{"attachment": {"button": [{"name": "채널추가", "type": "AC"}]}}',
'1'
);
Highlight type — image (AI)
SQL
INSERT INTO msg_tran (
channel_order, request_date, callback, recipient,
kko_msg_type, kko_content, kko_sender_key, kko_template_code, kko_option, msg_status
) VALUES (
'alimtalk', NOW(), '발신번호', '수신번호',
'AI', '메시지 내용', '발신프로필키', '템플릿코드',
'{
"attachment": {
"button": [
{ "name": "채널추가 버튼명", "type": "AC" },
{ "name": "웹링크 버튼명", "type": "WL", "urlMobile": "https://www.bizgo.io/", "urlPc": "https://www.bizgo.io/" }
]
}
}',
'1'
);
Highlight type — highlighted title
SQL
INSERT INTO msg_tran (
channel_order, request_date, callback, recipient,
kko_msg_type, kko_content, kko_sender_key, kko_template_code, kko_option, msg_status
) VALUES (
'alimtalk', NOW(), '발신번호', '수신번호',
'AT', '메시지 내용', '발신프로필키', '템플릿코드',
'{
"title": "강조표기형 제목",
"attachment": {
"button": [
{ "name": "웹링크 버튼명", "type": "WL", "urlMobile": "https://www.bizgo.io/", "urlPc": "https://www.bizgo.io/" }
]
}
}',
'1'
);
Highlight type — item list
SQL
INSERT INTO msg_tran (
channel_order, request_date, callback, recipient,
kko_msg_type, kko_content, kko_sender_key, kko_template_code, kko_option, msg_status
) VALUES (
'alimtalk', NOW(), '발신번호', '수신번호',
'AT', '메시지 내용', '발신프로필키', '템플릿코드',
'{
"header": "헤더 내용",
"attachment": {
"button": [
{ "name": "웹링크 버튼명", "type": "WL", "urlMobile": "https://www.bizgo.io/", "urlPc": "https://www.bizgo.io/" }
]
}
}',
'1'
);