-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmicroservice.yml
executable file
·397 lines (397 loc) · 14.1 KB
/
microservice.yml
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
omg: 1
lifecycle:
startup:
command: ["gmail"]
health:
http:
path: /health
port: 3000
info:
version: 1.0.0
title: Gmail microservice.
description: This is a gmail service.
contact:
name: Rohit Shetty
url: https://github.com/ht68rohit
email: rohits@heaptrace.com
license:
name: MIT
url: https://opensource.org/licenses/MIT
actions:
authorization:
help: This will return URL, copy paste URL on browser and get authorization code.
http:
port: 3000
method: post
path: /authorization
contentType: application/json
arguments:
scope:
type: string
in: requestBody
required: true
help: The scope to access user data (eg-"https://mail.google.com/")
output:
type: map
contentType: application/json
accessToken:
help: Return token object with access token, refresh token , token type and expiry.
http:
port: 3000
method: post
path: /accessToken
contentType: application/json
arguments:
authorizationCode:
type: string
in: requestBody
required: true
help: The authorizationCode code.
output:
type: map
contentType: application/json
refreshToken:
help: Return new token object with access token, refresh token ,token type and expiry.
http:
port: 3000
method: post
path: /refreshToken
contentType: application/json
arguments:
token:
type: map
in: requestBody
required: true
help: The old token object with access token, refresh token ,token type and expiry, all the fields are mandatory.
output:
type: map
contentType: application/json
sendMail:
help: Send mail.
http:
port: 3000
method: post
path: /sendMail
contentType: application/json
arguments:
accessToken:
type: string
in: requestBody
required: true
help: The access token.
userId:
type: string
in: requestBody
required: true
help: The sender email address.
to:
type: list
in: requestBody
required: true
help: The list of receiver's email address.
subject:
type: string
in: requestBody
required: true
help: The subject to the mail.
body:
type: string
in: requestBody
required: true
help: The message body of mail.
output:
type: map
contentType: application/json
createLabel:
help: Create new label, they are used to categorize messages and threads within the user's mailbox.
http:
port: 3000
method: post
path: /createLabel
contentType: application/json
arguments:
accessToken:
type: string
in: requestBody
required: true
help: The access token.
userId:
type: string
in: requestBody
required: true
help: The email address of account holder.
name:
type: string
in: requestBody
required: true
help: The name for new label.
backgroundColor:
type: string
in: requestBody
help: >
The background color represented as hex string "#RRGGBB" (ex "#000000"). This field is required in order to set the color of a label. Only the following predefined set of color values are allowed-
"#000000", "#434343", "#666666", "#999999", "#cccccc", "#efefef", "#f3f3f3", "#ffffff", "#fb4c2f", "#ffad47", "#fad165", "#16a766", "#43d692", "#4a86e8", "#a479e2", "#f691b3", "#f6c5be", "#ffe6c7", "#fef1d1", "#b9e4d0", "#c6f3de", "#c9daf8", "#e4d7f5", "#fcdee8",
"#efa093", "#ffd6a2", "#fce8b3", "#89d3b2", "#a0eac9", "#a4c2f4", "#d0bcf1", "#fbc8d9", "#e66550", "#ffbc6b", "#fcda83", "#44b984", "#68dfa9", "#6d9eeb", "#b694e8", "#f7a7c0", "#cc3a21", "#eaa041", "#f2c960", "#149e60", "#3dc789", "#3c78d8", "#8e63ce", "#e07798",
"#ac2b16", "#cf8933", "#d5ae49", "#0b804b", "#2a9c68", "#285bac", "#653e9b", "#b65775", "#822111", "#a46a21", "#aa8831", "#076239", "#1a764d", "#1c4587", "#41236d", "#83334c"
textColor:
type: string
in: requestBody
help: >
The text color of the label, represented as hex string. This field is required in order to set the color of a label. Only the following predefined set of color values are allowed -
"#000000", "#434343", "#666666", "#999999", "#cccccc", "#efefef", "#f3f3f3", "#ffffff", "#fb4c2f", "#ffad47", "#fad165", "#16a766", "#43d692", "#4a86e8", "#a479e2", "#f691b3", "#f6c5be", "#ffe6c7", "#fef1d1", "#b9e4d0", "#c6f3de", "#c9daf8", "#e4d7f5", "#fcdee8",
"#efa093", "#ffd6a2", "#fce8b3", "#89d3b2", "#a0eac9", "#a4c2f4", "#d0bcf1", "#fbc8d9", "#e66550", "#ffbc6b", "#fcda83", "#44b984", "#68dfa9", "#6d9eeb", "#b694e8", "#f7a7c0", "#cc3a21", "#eaa041", "#f2c960", "#149e60", "#3dc789", "#3c78d8", "#8e63ce", "#e07798",
"#ac2b16", "#cf8933", "#d5ae49", "#0b804b", "#2a9c68", "#285bac", "#653e9b", "#b65775", "#822111", "#a46a21", "#aa8831", "#076239", "#1a764d", "#1c4587", "#41236d", "#83334c"
labelListVisibility:
type: string
in: requestBody
help: The visibility of the label in the label list in the Gmail web interface.Possible values are "labelHide", "labelShow", "labelShowIfUnread".
messageListVisibility:
type: string
in: requestBody
help: The visibility of the label in the message list in the Gmail web interface.Possible values "hide" and "show".
output:
type: map
contentType: application/json
deleteLabel:
help: Immediately and permanently deletes the specified label and removes it from any messages and threads that it is applied to.
http:
port: 3000
method: post
path: /deleteLabel
contentType: application/json
arguments:
accessToken:
type: string
in: requestBody
required: true
help: The access token.
userId:
type: string
in: requestBody
required: true
help: The email address of account holder.
labelId:
type: string
in: requestBody
required: true
help: The label ID to delete.
output:
type: map
contentType: application/json
patchLabel:
help: Updates the specified label. This method supports patch semantics.
http:
port: 3000
method: post
path: /patchLabel
contentType: application/json
arguments:
accessToken:
type: string
in: requestBody
required: true
help: The access token.
userId:
type: string
in: requestBody
required: true
help: The email address of account holder.
labelId:
type: string
in: requestBody
required: true
help: The label ID to update.
name:
type: string
in: requestBody
help: The name for new label.
backgroundColor:
type: string
in: requestBody
help: >
The background color represented as hex string "#RRGGBB" (ex "#000000"). This field is required in order to set the color of a label. Only the following predefined set of color values are allowed-
"#000000", "#434343", "#666666", "#999999", "#cccccc", "#efefef", "#f3f3f3", "#ffffff", "#fb4c2f", "#ffad47", "#fad165", "#16a766", "#43d692", "#4a86e8", "#a479e2", "#f691b3", "#f6c5be", "#ffe6c7", "#fef1d1", "#b9e4d0", "#c6f3de", "#c9daf8", "#e4d7f5", "#fcdee8",
"#efa093", "#ffd6a2", "#fce8b3", "#89d3b2", "#a0eac9", "#a4c2f4", "#d0bcf1", "#fbc8d9", "#e66550", "#ffbc6b", "#fcda83", "#44b984", "#68dfa9", "#6d9eeb", "#b694e8", "#f7a7c0", "#cc3a21", "#eaa041", "#f2c960", "#149e60", "#3dc789", "#3c78d8", "#8e63ce", "#e07798",
"#ac2b16", "#cf8933", "#d5ae49", "#0b804b", "#2a9c68", "#285bac", "#653e9b", "#b65775", "#822111", "#a46a21", "#aa8831", "#076239", "#1a764d", "#1c4587", "#41236d", "#83334c"
textColor:
type: string
in: requestBody
help: >
The text color of the label, represented as hex string (ex "#000000"). This field is required in order to set the color of a label. Only the following predefined set of color values are allowed -
"#000000", "#434343", "#666666", "#999999", "#cccccc", "#efefef", "#f3f3f3", "#ffffff", "#fb4c2f", "#ffad47", "#fad165", "#16a766", "#43d692", "#4a86e8", "#a479e2", "#f691b3", "#f6c5be", "#ffe6c7", "#fef1d1", "#b9e4d0", "#c6f3de", "#c9daf8", "#e4d7f5", "#fcdee8",
"#efa093", "#ffd6a2", "#fce8b3", "#89d3b2", "#a0eac9", "#a4c2f4", "#d0bcf1", "#fbc8d9", "#e66550", "#ffbc6b", "#fcda83", "#44b984", "#68dfa9", "#6d9eeb", "#b694e8", "#f7a7c0", "#cc3a21", "#eaa041", "#f2c960", "#149e60", "#3dc789", "#3c78d8", "#8e63ce", "#e07798",
"#ac2b16", "#cf8933", "#d5ae49", "#0b804b", "#2a9c68", "#285bac", "#653e9b", "#b65775", "#822111", "#a46a21", "#aa8831", "#076239", "#1a764d", "#1c4587", "#41236d", "#83334c"
labelListVisibility:
type: string
in: requestBody
help: The visibility of the label in the label list in the Gmail web interface.Possible values are "labelHide", "labelShow", "labelShowIfUnread".
messageListVisibility:
type: string
in: requestBody
help: The visibility of the label in the message list in the Gmail web interface.Possible values "hide" and "show".
output:
type: map
contentType: application/json
labelList:
help: Lists all labels from user's mailbox.
http:
port: 3000
method: post
path: /labelList
contentType: application/json
arguments:
accessToken:
type: string
in: requestBody
required: true
help: The access token.
userId:
type: string
in: requestBody
required: true
help: The email address of account holder.
output:
type: map
contentType: application/json
createFilter:
help: Creates a filter.
http:
port: 3000
method: post
path: /createFilter
contentType: application/json
arguments:
accessToken:
type: string
in: requestBody
required: true
help: The access token.
userId:
type: string
in: requestBody
required: true
help: The email address of account holder.
addLabelId:
type: string
in: requestBody
help: The label to add to the message.
removeLabelId:
type: string
in: requestBody
help: The label to remove from the message.
excludeChats:
type: boolean
in: requestBody
help: Whether the response should exclude chats.
from:
type: string
in: requestBody
required: true
help: The sender's email address.
to:
type: string
in: requestBody
help: The recipient's display name or email address. Includes recipients in the "to", "cc", and "bcc" header fields. You can use simply the local part of the email address. For example, "example" and "example@" both match "example@gmail.com". This field is case-insensitive.
subject:
type: string
in: requestBody
help: Case-insensitive phrase found in the message's subject. Trailing and leading whitespace are be trimmed and adjacent spaces are collapsed.
hasAttachment:
type: boolean
in: requestBody
help: Whether the message has any attachment.
negatedQuery:
type: string
in: requestBody
help: Only return messages not matching the specified query. Supports the same query format as the Gmail search box.
query:
type: string
in: requestBody
help: Only return messages matching the specified query. Supports the same query format as the Gmail search box.
size:
type: int
in: requestBody
help: The size of the entire RFC822 message in bytes, including all headers and attachments.
sizeComparison:
type: string
in: requestBody
help: How the message size in bytes should be in relation to the size field. Acceptable values are "larger", "smaller" and "unspecified"
output:
type: map
contentType: application/json
deleteFilter:
help: Delete a filter.
http:
port: 3000
method: post
path: /deleteFilter
contentType: application/json
arguments:
accessToken:
type: string
in: requestBody
required: true
help: The access token.
userId:
type: string
in: requestBody
required: true
help: The email address of account holder.
filterId:
type: string
in: requestBody
help: The filter ID to delete.
output:
type: map
contentType: application/json
filterList:
help: List all the filter from setting.
http:
port: 3000
method: post
path: /filterList
contentType: application/json
arguments:
accessToken:
type: string
in: requestBody
required: true
help: The access token.
userId:
type: string
in: requestBody
required: true
help: The email address of account holder.
output:
type: map
contentType: application/json
receive:
help: Start receiving emails from inbox.
events:
mail:
help: Triggered anytime when any new email is occurred in mail inbox.
arguments:
userId:
type: string
in: requestBody
required: true
help: The receiver account email address.
accessToken:
type: string
in: requestBody
required: true
help: The access token to use gmail API.
http:
port: 3000
subscribe:
method: post
path: /receive
contentType: application/json
output:
contentType: application/json
type: map
environment:
CREDENTIAL_JSON:
type: string
required: true
help: Base64 data of credential.json' file.