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

ColumnRequiredDescription
channel_order'alimtalk'
kko_sender_keySender profile key
kko_template_codeTemplate code
kko_contentMessage content (including substitution of the template variables #{변수명})
recipientRecipient number
msg_status'1'
request_dateSend request time
kko_msg_typeAT: standard Alimtalk, AI: image Alimtalk
kko_optionOptions such as buttons, images, and highlight text (JSON)

kko_option structure

KeyTypeDescription
attachment.buttonArrayButton list
attachment.imageObjectImage (AI type)
titleStringHighlight title
headerStringHeader text
supplementObjectSupplementary information (quick reply and so on)

Button types

typeDescription
WLWeb link
ALApp link
ACAdd channel
DSDelivery tracking
BKBot keyword
MDMessage 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'
);
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'
);
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'
);