...
Code Block |
---|
{
"senderKey": String,
"templateCode": String,
"sendDate": String,
"resend": Boolean,
"resender": String,
"receivers": [
{
"phoneNumber": String,
"content": String
}
]
} |
Name | Type | Required | Description |
---|---|---|---|
senderKey | String | true | 발신 키 |
templateCode | String | true | 알림톡 템플릿 코드 |
sendDate | String | false | 발송시간
|
resend | Boolean | false | 발송 실패 시, 문자 대체 발송 여부 |
resender | String | false | 대체발송 발신번호
|
receivers | Array | true | 수신자 정보 |
– phoneNumber | String | true | 수신자 번호
|
– content | String | true | 메시지 내용
|
...
Code Block |
---|
{ "senderKey": String, "sendDate": String, "adFlag": Boolean, "messageType": String, "image": { "contentType": String, "fileName": String, "body": String }, "imageLink": String, "receiversresend": [Boolean, "resender": String, "buttons": [ { "phoneNumberbuttonType": String, "contentname": String, "mobileUrl": String, } ] } |
...
Name
...
Type
...
Required
...
Description
...
senderKey
...
String
...
true
...
발신 키
...
sendDate
...
String
...
false
...
발송시간
format : yyyy-MM-dd HH:mm
...
adFlag
...
Boolean
...
false
...
광고여부
...
image
...
Object
...
false
...
이미지
...
– contentType
...
String
...
true
...
MIME Type
JPG(image/jpeg), JPEG(image/jpeg), SIS(image/vnd.wap.sis)
...
– fileName
...
String
...
true
...
File Name
...
– body
...
String
...
true
File Body
File byte[] 를 Base64 인코딩
size : 50kb 이하
...
"pcUrl": String,
"androidUrl": String,
"iosUrl": String,
"chatExtra": String,
"chatEvent": String,
"target": String,
"orderNo": Integer
}
],
"receivers": [
{
"phoneNumber": String,
"content": String
}
]
} |
Name | Type | Required | Description |
---|---|---|---|
senderKey | String | true | 발신 키 |
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) |
imageLink | String | false | 이미지 링크 |
resend | Boolean | false | 발송 실패 시, 문자 대체 발송 여부 |
resender | String | false | 대체발송 발신번호
|
buttons | Array | false | 버튼 리스트 |
– buttonType | String | false | 버튼 타입
|
– name | String | false | 버튼 명 |
– mobileUrl | String | false | 모바일 웹링크
|
– pcUrl | String | false | PC 웹링크
|
– androidUrl | String | false | Android 앱링크
|
– iosUrl | String | false | IOS 앱링크
|
– chatExtra | String | false | 상담톡 전환, 봇 전환 버튼일 때 전달할 정보
|
– chatEvent | String | false | 봇 전환 버튼일 때, 연결할 이벤트명
|
– target | String | false | 웹링크 버튼인 경우, 아웃링크 기본 인앱 링크로 발송
|
– orderNo | Integer | false | 버튼 순서 |
receivers | Array | true | 수신자 정보 |
– phoneNumber | String | true | 수신자 번호
|
– content | String | true | 메시지 내용
|
...