-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathCommunicationServicesEmail.json
461 lines (461 loc) · 13.4 KB
/
CommunicationServicesEmail.json
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
{
"swagger": "2.0",
"info": {
"title": "CommunicationEmailClient",
"description": "Azure Communication Email Service",
"version": "2021-10-01-preview"
},
"paths": {
"/emails/{messageId}/status": {
"get": {
"tags": [
"EmailGetSendStatus"
],
"summary": "Gets the status of a message sent previously.",
"operationId": "Email_GetSendStatus",
"produces": [
"application/json"
],
"consumes": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "messageId",
"description": "System generated message id (GUID) returned from a previous call to send email",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"default": {
"description": "Error",
"headers": {
"x-ms-error-code": {
"description": "Error code - this will be the same as the code in the error property in the response body.",
"type": "string"
}
},
"schema": {
"$ref": "../../../Common/stable/2021-03-07/common.json#/definitions/CommunicationErrorResponse"
}
},
"200": {
"description": "Message status was successfully retrieved.",
"headers": {
"Retry-After": {
"description": "Amount of time client should wait before retrying the request, specified in seconds ",
"type": "integer"
}
},
"schema": {
"$ref": "#/definitions/SendStatusResult"
}
}
},
"x-ms-examples": {
"Get Message Status": {
"$ref": "./examples/GetSendStatus.json"
}
}
}
},
"/emails:send": {
"post": {
"tags": [
"EmailSend"
],
"summary": "Queues an email message to be sent to one or more recipients",
"operationId": "Email_Send",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "header",
"name": "repeatability-request-id",
"description": "If specified, the client directs that the request is repeatable; that is, that the client can make the request multiple times with the same Repeatability-Request-Id and get back an appropriate response without the server executing the request multiple times. The value of the Repeatability-Request-Id is an opaque string representing a client-generated, globally unique for all time, identifier for the request. It is recommended to use version 4 (random) UUIDs.",
"type": "string",
"required": true
},
{
"in": "header",
"name": "repeatability-first-sent",
"description": "Must be sent by clients to specify that a request is repeatable. Repeatability-First-Sent is used to specify the date and time at which the request was first created in the IMF-fix date form of HTTP-date as defined in RFC7231. eg- Tue, 26 Mar 2019 16:06:51 GMT",
"type": "string",
"required": true
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"in": "body",
"name": "emailMessage",
"description": "Message payload for sending an email",
"required": true,
"schema": {
"$ref": "#/definitions/EmailMessage"
}
}
],
"responses": {
"default": {
"description": "Error",
"headers": {
"x-ms-error-code": {
"description": "Error code - this will be the same as the code in the error property in the response body.",
"type": "string"
}
},
"schema": {
"$ref": "../../../Common/stable/2021-03-07/common.json#/definitions/CommunicationErrorResponse"
}
},
"202": {
"description": "Message accepted, the `Operation-Location` header contains the URL to poll for the message status.",
"headers": {
"Repeatability-Result": {
"description": "Status of a repeatable request.",
"type": "string"
},
"Operation-Location": {
"description": "Location url of where to poll the status of this message from.",
"type": "string"
},
"Retry-After": {
"description": "Amount of time client should wait before retrying the request, specified in seconds ",
"type": "integer"
},
"x-ms-request-id": {
"description": "System generated GUID indicating the id of this specific message, to be used for tracking purposes.",
"type": "string"
}
}
}
},
"x-ms-examples": {
"Send Email": {
"$ref": "./examples/SendEmail.json"
}
}
}
}
},
"definitions": {
"EmailMessage": {
"description": "Message payload for sending an email",
"required": [
"sender",
"content",
"recipients"
],
"type": "object",
"properties": {
"headers": {
"description": "Custom email headers to be passed.",
"type": "array",
"x-ms-client-name": "CustomHeaders",
"items": {
"$ref": "#/definitions/EmailCustomHeader"
}
},
"sender": {
"description": "Sender email address from a verified domain.",
"type": "string",
"example": "[email protected]"
},
"content": {
"description": "Email content to be sent.",
"$ref": "#/definitions/EmailContent"
},
"importance": {
"description": "The importance type for the email.",
"$ref": "#/definitions/EmailImportance"
},
"recipients": {
"description": "Recipients for the email.",
"$ref": "#/definitions/EmailRecipients"
},
"attachments": {
"description": "list of attachments",
"type": "array",
"items": {
"$ref": "#/definitions/EmailAttachment"
}
},
"replyTo": {
"description": "Email addresses where recipients' replies will be sent to.",
"type": "array",
"items": {
"$ref": "#/definitions/EmailAddress"
}
},
"disableUserEngagementTracking": {
"description": "Indicates whether user engagement tracking should be disabled for this request if the resource-level user engagement tracking setting was already enabled in the control plane.",
"type": "boolean"
}
}
},
"EmailCustomHeader": {
"description": "Custom header for email.",
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"description": "Header name.",
"type": "string",
"example": ""
},
"value": {
"description": "Header value.",
"type": "string",
"example": ""
}
}
},
"EmailAddress": {
"description": "An object representing the email address and its display name",
"type": "object",
"required": [
"email"
],
"properties": {
"email": {
"description": "Email address.",
"type": "string",
"example": "[email protected]"
},
"displayName": {
"description": "Email display name.",
"type": "string",
"example": "abc"
}
}
},
"EmailContent": {
"description": "Content of the email.",
"type": "object",
"required": [
"subject"
],
"properties": {
"subject": {
"description": "Subject of the email message",
"type": "string",
"example": "An exciting offer especially for you!"
},
"plainText": {
"description": "Plain text version of the email message.",
"type": "string",
"example": "This exciting offer was created especially for you, our most loyal customer."
},
"html": {
"description": "Html version of the email message.",
"type": "string",
"example": "<html><head><title>Exciting offer!</title></head><body><h1>This exciting offer was created especially for you, our most loyal customer.</h1></body></html>"
}
}
},
"EmailImportance": {
"description": "The importance type for the email.",
"enum": [
"high",
"normal",
"low"
],
"type": "string",
"default": "normal",
"x-ms-enum": {
"name": "EmailImportance",
"modelAsString": true
}
},
"EmailAttachment": {
"description": "Attachment to the email.",
"type": "object",
"required": [
"name",
"attachmentType",
"contentBytesBase64"
],
"properties": {
"name": {
"description": "Name of the attachment",
"type": "string",
"example": "attachment.pdf"
},
"attachmentType": {
"$ref": "#/definitions/EmailAttachmentType"
},
"contentBytesBase64": {
"description": "Base64 encoded contents of the attachment",
"type": "string",
"example": "TWFueSBoYW5kcyBtYWtlIGxpZ2h0I"
}
}
},
"EmailAttachmentType": {
"description": "The type of attachment file.",
"enum": [
"avi",
"bmp",
"doc",
"docm",
"docx",
"gif",
"jpeg",
"mp3",
"one",
"pdf",
"png",
"ppsm",
"ppsx",
"ppt",
"pptm",
"pptx",
"pub",
"rpmsg",
"rtf",
"tif",
"txt",
"vsd",
"wav",
"wma",
"xls",
"xlsb",
"xlsm",
"xlsx"
],
"type": "string",
"x-ms-enum": {
"name": "EmailAttachmentType",
"modelAsString": true
}
},
"EmailRecipients": {
"description": "Recipients of the email",
"type": "object",
"required": [
"to"
],
"properties": {
"to": {
"description": "Email To recipients",
"type": "array",
"items": {
"$ref": "#/definitions/EmailAddress"
}
},
"CC": {
"description": "Email CC recipients",
"type": "array",
"items": {
"$ref": "#/definitions/EmailAddress"
}
},
"bCC": {
"description": "Email BCC recipients",
"type": "array",
"items": {
"$ref": "#/definitions/EmailAddress"
}
}
}
},
"SendStatusResult": {
"description": "Status of an email message that was sent previously.",
"type": "object",
"required": [
"messageId",
"status"
],
"properties": {
"messageId": {
"description": "System generated id of an email message sent.",
"type": "string",
"example": "F9168C5E-CEB2-4faa-B6BF-329BF39FA1E4"
},
"status": {
"$ref": "#/definitions/SendStatus"
}
}
},
"SendStatus": {
"description": "The type indicating the status of a request.",
"enum": [
"queued",
"outForDelivery",
"dropped"
],
"type": "string",
"x-ms-enum": {
"name": "SendStatus",
"modelAsString": true,
"values": [
{
"value": "queued",
"description": "The message has passed basic validations and has been queued to be processed further."
},
{
"value": "outForDelivery",
"description": "The message has been processed and is now out for delivery."
},
{
"value": "dropped",
"description": "The message could not be processed and was dropped."
}
]
}
}
},
"parameters": {
"ApiVersionParameter": {
"in": "query",
"name": "api-version",
"description": "Version of API to invoke.",
"required": true,
"enum": [
"2021-10-01-preview"
],
"type": "string"
}
},
"securityDefinitions": {
"Authorization": {
"type": "apiKey",
"name": "Authorization",
"in": "header",
"description": "An authentication string containing a signature generated using HMAC-SHA256 scheme."
}
},
"security": [
{
"Authorization": []
}
],
"x-ms-parameterized-host": {
"hostTemplate": "{endpoint}",
"useSchemePrefix": false,
"parameters": [
{
"name": "endpoint",
"description": "The communication resource, for example https://my-resource.communication.azure.com",
"required": true,
"type": "string",
"in": "path",
"x-ms-skip-url-encoding": true,
"x-ms-parameter-location": "client"
}
]
}
}