Naver TalkTalk
Naver TalkTalk is a message channel that delivers informational messages to customers through a Naver business channel. Bizgo supports template-based message sending in line with the Naver Smart Notification specification.
Send a Naver Smart Notification
The Naver TalkTalk send specification. It uses the messageFlow[].navertalk object.
Body Parameters
{}JSONdestinations
RequiredObject ArrayThe array of recipient information. Up to 200 per broadcast send.
messageFlow
RequiredObject ArrayWhen you add messages, they are handled in order as automatic failover messages.
paymentCode
StringThe department code used for settlement.
groupKey
StringA key you set to group messages and review their statistics in Message Insight.
idempotencyKey
StringThe idempotency key field that identifies the request for idempotency.
idempotencyTtl
IntegerThe validity period of the idempotency key.
ref
StringA per-request reference field.
Returns
common
ObjectThe common response section.
data
ObjectThe service response section.
Request example
curl -X POST "/api/comm/v1/send/omni" \ -H "Authorization: {ApiKey}" \ -H "Content-Type: application/json" \ -d '{ "destinations": [{ "to": "01012345678" }], "messageFlow": [{ "navertalk": { "partnerKey": "PARTNER_KEY", "templateCode": "NAVER_TEMPLATE_001", "productCode": "INFORMATION", "text": "๋ค์ด๋ฒ ํกํก ๋ฉ์์ง ๋ณธ๋ฌธ์
๋๋ค.", "attachments": { "buttons": [{ "buttonCode": "WEB_LINK", "mobileUrl": "https://m.example.com", "pcUrl": "https://example.com" }] } } }], "ref": "naver-talktalk-20260331-001" }'Response example
{ "common": { "authCode": "A000", "authResult": "Success", "infobankTrId": "Infobank-Tracking-Id" }, "data": { "code": "A000", "result": "SUCCESS", "data": { "destinations": [{ "to": "01012345678", "msgKey": "20260424104234546POM101182450000", "code": "A000", "result": "Success" }] }, "ref": "naver-talktalk-20260331-001" }}