...
Code Block |
---|
{
"senderKey": String,
"sender": String,
"templateCode": String,
"sendDate": String,
"receivers": [
{
"phoneNumber": String,
"content": String
}
]
} |
Name | Type | Required | Description | ||||
---|---|---|---|---|---|---|---|
senderKey | String | true | 발신 키 | sender | String | true | 발신자 번호 format : 000-0000-0000 |
templateCode | String | true | 알림톡 템플릿 코드 | ||||
sendDate | String | false | 발송시간
| ||||
receivers | Array | true | 수신자 정보 | ||||
– phoneNumber | String | true | 수신자 번호
| ||||
– content | String | true | 메시지 내용
|
...
Code Block |
---|
{ "senderKey": String, "sender": String, "sendDate": String, "adFlag": Boolean, "messageType": String, "image": { "contentType": String, "fileName": String, "body": String }, "imageLink": String, "receivers": [ { "phoneNumber": String, "content": String } ] } |
Name | Type | Required | Description | ||||
---|---|---|---|---|---|---|---|
senderKey | String | true | 발신 키 | sender | String | true | 발신자 번호 format : 000-0000-0000 |
sendDate | String | false | 발송시간
| ||||
adFlag | Boolean | false | 광고여부 | ||||
image | Object | false | 이미지 | ||||
– contentType | String | true | MIME Type
| ||||
– fileName | String | true | File Name | ||||
– body | String | true | File Body
ex) | ||||
receivers | Array | true | 수신자 정보 | ||||
– phoneNumber | String | true | 수신자 번호
| ||||
– content | String | true | 메시지 내용
|
...