-
Notifications
You must be signed in to change notification settings - Fork 0
/
toast-sms.yaml
237 lines (237 loc) · 6.31 KB
/
toast-sms.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
swagger: '2.0'
info:
title: Toast Cloud SMS
version: '1.0'
description: Toast Cloud SMS API Specification
host: "api-sms.cloud.toast.com"
basePath: /sms/v2.2/appKeys/
schemes:
- https
paths:
/{appKey}/sender/sms:
post:
tags:
- sms
summary: 단문 SMS 발송
operationId: sendSMS
description: 최대 255자 이내
consumes:
- application/json;charset=UTF-8
parameters:
- name: appKey
in: path
description: Project별 고유의 앱키
required: true
type: string
- name: body
in: body
required: true
schema:
$ref: "#/definitions/smsBody"
responses:
200:
description: 너무 길어서 생략
get:
tags:
- sms
summary: 단문 SMS 발송 리스트 조회 (Parameter는 선택적으로 옮겼음)
operationId: getSmsSendList
consumes:
- application/sjon;charset=UTF-8
parameters:
- name: appKey
in: path
description: Project별 고유의 앱키
required: true
type: string
- name: requestId
in: query
type: string
maxLength: 25
description: 요청ID (조건적 필수 - 1)
- name: startRequestDate
in: query
type: string
format: yyyy-MM-dd HH:mm:ss
description: 발송 날짜 시작값 (조건적 필수 - 2)
- name: endRequestDate
in: query
type: string
format: yyyy-MM-dd HH:mm:ss
description: 발송 날짜 종료값 (조건적 필수 - 2)
- name: msgStatus
in: query
type: string
enum:
- 0
- 1
- 2
- 3
- 4
- 5
responses:
200:
description: 너무 길어서 생략
/{appKey}/sender/mms:
post:
tags:
- mms
summary: 장문 SMS 발송
operationId: sendMmsWithoutAttachment
description: 최대 4000자 이내
consumes:
- application/json;charset=UTF-8
parameters:
- name: appKey
in: path
description: Project별 고유의 앱키
required: true
type: string
- name: body
in: body
required: true
schema:
$ref: "#/definitions/mmsBody"
responses:
200:
description: 너무 길어서 생략
get:
tags:
- mms
summary: 장문 MMS 발송 리스트 조회 (Parameter는 선택적으로 옮겼음)
operationId: getMmsSendList
consumes:
- application/sjon;charset=UTF-8
parameters:
- name: appKey
in: path
description: Project별 고유의 앱키
required: true
type: string
- name: requestId
in: query
type: string
maxLength: 25
description: 요청ID (조건적 필수 - 1)
- name: startRequestDate
in: query
type: string
format: yyyy-MM-dd HH:mm:ss
description: 발송 날짜 시작값 (조건적 필수 - 2)
- name: endRequestDate
in: query
type: string
format: yyyy-MM-dd HH:mm:ss
description: 발송 날짜 종료값 (조건적 필수 - 2)
- name: msgStatus
in: query
type: string
enum:
- 0
- 1
- 2
- 3
- 4
- 5
responses:
200:
description: 너무 길어서 생략
definitions:
recipient:
type: object
description: 문자 수신자 정보
required: [recipientNo]
properties:
recipientNo:
type: string
maxLength: 50
description: 수신번호 (countryCode와 조합하여 사용 가능, 최대 1000명)
countryCode:
type: string
maxLength: 255
description: "국가 번호 [기본값: 82(한국)]"
internationalRecipientNo:
type: string
description: "국가 번호가 포함된 수신 번호 [예)821012345678, recipientNo가 있을 경우 이 값은 무시된다.]"
templateParameter:
$ref: "#/definitions/templateParameter"
recipientGroupingKey:
type: string
maxLength: 100
templateParameter:
type: object
required: [key, value]
description: 템플릿 사용시, 템플릿 내 키 값들 치환을 위한 (수신자별로 적용됨)
properties:
key:
type: string
description: "치환 키(##key##)"
value:
type: string
description: "치환 키에 매핑되는 Value값"
smsBody:
type: object
description: 문자 발송 요청에 필요한 정보들
required: [body, sendNo, recipientList]
properties:
templateId:
type: string
maxLength: 50
description: 발송 템플릿 ID
body:
type: string
maxLength: 90
description: 본문 내용 (개행은 \n으로, 표준 90 Byte)
sendNo:
type: string
maxLength: 13
description: 발신 번호
requestDate:
type: string
format: yyyy-MM-dd HH:mm
description: 예약 일시
sendingGroupingKey:
type: string
description: 발신자 그룹키
recipientList:
type: array
items:
$ref: "#/definitions/recipient"
userId:
type: string
maxLength: 100
mmsBody:
type: object
description: 문자 발송 요청에 필요한 정보들
required: [title,body, sendNo, recipientList]
properties:
templateId:
type: string
maxLength: 50
description: 발송 템플릿 ID
title:
type: string
maxLength: 40
description: 메세지 제목 (표준 40Byte)
body:
type: string
maxLength: 2000
description: 본문 내용 (개행은 \n으로, 장문 표준 2000바이트)
sendNo:
type: string
maxLength: 13
description: 발신 번호
requestDate:
type: string
format: yyyy-MM-dd HH:mm
description: 예약 일시
sendingGroupingKey:
type: string
description: 발신자 그룹키
recipientList:
type: array
items:
$ref: "#/definitions/recipient"
userId:
type: string
maxLength: 100