-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomnichannel-integration.specs.yaml
681 lines (661 loc) · 25.2 KB
/
omnichannel-integration.specs.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
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
openapi: 3.0.3
info:
version: 1.0.0
title: Channels API - Required endpoints in the vendor's integration
description: |
Describes the endpoints that should be available in your integration.
## Manifest description of the endpoints
Notice that these endpoints need to be added to the manifest file in your app's configuration page in Marketplace Manager, so the API becomes aware of the URLs it needs to call. See an example of the manifest bellow:
```json
{
"version": "v202101",
"endpoints": {
"getConversations": "https://your-app.com/api/channels/:providerChannelId/conversations",
"getConversationById": "https://your-app.com/apic/channels/:providerChannelId/conversations/:sourceConversationId",
"postMessage": "https://your-app.com/api/channels/:providerChannelId/messages",
"getMessageById": "https://your-app.com/api/channels/{providerChannelId}/conversations/:sourceConversationId/messages/{sourceMessageId}",
"getSenderById": "https://your-app.com/api/channels/:providerChannelId/senders/:senderId",
"getTemplates": "https://your-app.com/api/channels/:providerChannelId/templates",
"deleteChannelById": "https://your-app.com/api/channels/:providerChannelId"
}
}
```
***getTemplates** endpoint is optional (needed only if `template_support` is enabled)
***getMessageById** endpoint is optional (needed only if `link_expires` is enabled)
***deleteChannelById** endpoint is optional (needed if multiple channels per user is supported. Eg.: Facebook pages)
***getSenderById** endpoint is optional (needed if `avatar_expires` or `fetch_avatar` is true)
Notice that the endpoint descriptions have a key (eg.: getConversations) and a value, which is the endpoint URL that corresponds to that key. The URL can be anything that matches the endpoint in your app, you just need to keep the variables somewhere.
## Required variables in each URL in the manifest file
| URL key | Variables |
|---------------------------|-------------------------------------------|
| **getConversations** | :providerChannelId |
| **getConversationById** | :providerChannelId, :sourceConversationId |
| **postMessage** | :providerChannelId |
| **getMessageById** | :providerChannelId, :sourceConversationId, :sourceMessageId |
| **getSenderById** | :providerChannelId, :senderId |
| **getTemplates** | :providerChannelId |
| **deleteChannelById** | :providerChannelId |
## What each variable means
| Variable | Description |
|----------------------------|-------------------------------------------|
| **:providerChannelId** | The channel ID |
| **:sourceConversationId** | The conversation ID |
| **:senderId** | The ID of a conversation participant |
| **:sourceMessageId** | The ID of a message |
servers:
- url: '{protocol}://{yourAppDomain}{yourApiPrefix}'
variables:
yourAppDomain:
default: your-app.com
description: The domain used by your app to expose public endpoints
yourApiPrefix:
default: /api
description: The api prefix of your app
protocol:
enum: [http, https]
default: https
security:
- Authorization: []
paths:
/channels/{providerChannelId}:
delete:
tags:
- Channels
summary: Deletes a channel (deleteChannelById)
description: >
In case your app can insert more than one channel for the user, the user is able to delete them one by one.
operationId: deleteChannelById
parameters:
- in: path
name: providerChannelId
schema:
type: string
required: true
description: The ID of the channel
responses:
'200':
description: Success
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
'401':
description: Unauthorized
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: false
data:
type: object
properties:
message:
type: string
description: The error description
code:
type: string
enum: [UNAUTHORIZED, ACCOUNT_SUSPENDED]
description: An error code expected by the API. If the error is issued due to a suspended account, please send the code ACCOUNT_SUSPENDED
/channels/{providerChannelId}/conversations:
get:
tags:
- Conversations
summary: Get all conversations from a channel (getConversations)
description: >
Endpoint is used to sync an initial batch of conversations and their messages and participant.
It is called right after a channel is registered in the Channels API using the `POST /channels` endpoint in the Pipedrive API.
operationId: getConversations
parameters:
- in: path
name: providerChannelId
schema:
type: string
required: true
description: The ID of the channel
- in: query
name: conversations_limit
schema:
type: integer
default: 30
description: The maximum number of conversations expected in the response. It's recommended to use this default value and support pagination, for better performance
- in: query
name: messages_limit
schema:
type: integer
default: 30
description: The maximum number of messages expected for each conversation in the response. It's recommended to use this default value and support pagination, for better performance
- in: query
name: after
schema:
type: string
description: The pointer used to fetch more conversations
responses:
'200':
description: Success
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
type: array
items:
$ref: "#/components/schemas/conversation"
additional_data:
type: object
properties:
after:
type: string
description: A reference cursor used by the provider, it points to the last conversation loaded, for pagination
'401':
$ref: "#/components/responses/401_Unauthorized"
'403':
$ref: "#/components/responses/403_Forbidden"
'404':
$ref: "#/components/responses/404_NotFound"
'429':
$ref: "#/components/responses/429_RateLimitExceeded"
/channels/{providerChannelId}/conversations/{sourceConversationId}:
get:
tags:
- Conversations
summary: Get a single conversation and it's messages (getConversationById)
description: >
This endpoint is used to fetch a specific conversation and its messages.
It is called when an incoming message is part of a new conversation or when paginating over messages.
operationId: getConversationById
parameters:
- in: path
name: providerChannelId
schema:
type: string
required: true
description: The ID of the channel
- in: path
name: sourceConversationId
schema:
type: string
required: true
description: The ID of the conversation
- in: query
name: after
schema:
type: string
description: The cursor used for fetching more messages from the provider
- in: query
name: messages_limit
schema:
type: integer
default: 30
description: The maximum number of messages expected for each conversation in the response. It's recommended to use this default value and support pagination, for better performance
responses:
'200':
description: Success
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
$ref: "#/components/schemas/conversation"
additional_data:
type: object
properties:
after:
type: string
description: A reference cursor used by the provider, it points to the last conversation loaded, for pagination
'401':
$ref: "#/components/responses/401_Unauthorized"
'403':
$ref: "#/components/responses/403_Forbidden"
'404':
$ref: "#/components/responses/404_NotFound"
'429':
$ref: "#/components/responses/429_RateLimitExceeded"
/channels/{providerChannelId}/messages:
post:
tags:
- Messages
summary: Add a message (postMessage)
description: >
This endpoint is used to send a new message to a conversation.
It’s called when a user types a message in the chat window and sends it.
Unlike the other endpoints, requests for this one will be sent as `multipart/form-data`, since messages may include file attachments.
operationId: postMessage
parameters:
- in: path
name: providerChannelId
schema:
type: string
required: true
description: The ID of the channel
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
message:
type: string
description: The text message to be sent
senderId:
type: string
description: A unique ID representing the participant who sent the message
conversationId:
type: string
description: The ID of the conversation
recipientIds:
type: string
description: Ids of all recipients for a message, split by ",". Eg. josef123456,Eva879542
files:
type: string
description: Binary of the files sent attached in the message
responses:
'200':
description: Success
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
type: object
required: [id]
properties:
id:
type: string
description: The ID of the created message
'400':
$ref: "#/components/responses/400_BadRequest"
'401':
$ref: "#/components/responses/401_Unauthorized"
'403':
$ref: "#/components/responses/403_Forbidden"
'404':
$ref: "#/components/responses/404_NotFound"
'429':
$ref: "#/components/responses/429_RateLimitExceeded"
/channels/{providerChannelId}/messages/{sourceMessageId}:
get:
tags:
- Messages
summary: Get the details of a message (getMessageById)
description: >
When an attachment was received with the option `link_expires: true`, Pipedrive will test the attachment links provided, by sending a HEAD request.
In the case that the link is no longer accessible, Pipedrive will make a request to this endpoint to receive an updated message with attachments.
operationId: getMessageById
parameters:
- in: path
name: providerChannelId
schema:
type: string
required: true
description: The ID of the channel
- in: path
name: sourceMessageId
schema:
type: string
required: true
description: The ID of the message
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: "#/components/schemas/message"
'401':
$ref: "#/components/responses/401_Unauthorized"
'403':
$ref: "#/components/responses/403_Forbidden"
'404':
$ref: "#/components/responses/404_NotFound"
'429':
$ref: "#/components/responses/429_RateLimitExceeded"
/channels/{providerChannelId}/senders/{senderId}:
get:
tags:
- Senders
summary: Get the information about a message sender (getSenderById)
description: >
This endpoint is called occasionally (max once per day) to refresh the sender's avatar if `avatar_expires` is `true` and also when there is no avatar for the sender but `fetch_avatar` is set to `true` during the sender creation (only once when installing the app).
operationId: getSenderById
parameters:
- in: path
name: providerChannelId
schema:
type: string
required: true
description: The ID of the channel
- in: path
name: senderId
schema:
type: string
required: true
description: The ID of the sender
responses:
'200':
description: Success
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
type: object
required: [id, name, avatar_url]
properties:
id:
type: string
description: The ID of the sender
name:
type: string
description: The name of the sender
avatar_url:
type: string
description: An URL to the sender's avatar picture
'401':
$ref: "#/components/responses/401_Unauthorized"
'403':
$ref: "#/components/responses/403_Forbidden"
'404':
$ref: "#/components/responses/404_NotFound"
'429':
$ref: "#/components/responses/429_RateLimitExceeded"
/channels/{providerChannelId}/templates:
get:
tags:
- Templates
summary: Returns a list of templates (getTemplates)
description: >
This endpoint is used to fetch a list of templates, when the channel was registered with `template_support: true` option.
Right now, only approved WhatsApp templates are supported.
operationId: getTemplates
parameters:
- in: path
name: providerChannelId
schema:
type: string
required: true
description: The ID of the channel
responses:
'200':
description: Success
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
data:
type: object
properties:
templates:
type: array
description: A list of templates
items:
type: object
required: [id, name, content, language]
properties:
id:
type: string
description: A unique ID for the template
name:
type: string
description: The template's name
content:
type: string
description: The content of the template
language:
type: string
'401':
$ref: "#/components/responses/401_Unauthorized"
'403':
$ref: "#/components/responses/403_Forbidden"
'429':
$ref: "#/components/responses/429_RateLimitExceeded"
components:
securitySchemes:
Authorization:
description:
We send in the authorization your app's Client ID in Pipedrive as the username, and it's secret as the password
type: http
scheme: basic
responses:
400_BadRequest:
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: false
data:
type: object
properties:
message:
type: string
description: The error description
code:
type: string
example: BAD_REQUEST
description: An error code expected by the API
401_Unauthorized:
description: Unauthorized
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: false
data:
type: object
properties:
message:
type: string
description: The error description
code:
type: string
enum: [UNAUTHORIZED, ACCOUNT_SUSPENDED]
description: An error code expected by the API. If the error is issued due to a suspended account, please send the code ACCOUNT_SUSPENDED
403_Forbidden:
description: Forbidden
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: false
data:
type: object
properties:
message:
type: string
description: The error description
code:
type: string
example: FORBIDDEN
description: An error code expected by the API
404_NotFound:
description: Not Found
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: false
data:
type: object
properties:
message:
type: string
description: A message describing which object was not found
code:
type: string
example: 'NOT_FOUND'
description: An error code expected by the API
429_RateLimitExceeded:
description: Rate Limit Exceeded
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: false
data:
type: object
properties:
message:
type: string
description: The error description
code:
type: string
example: 'RATE_LIMIT_EXCEEDED'
description: An error code sent by the API
retry_by:
type: string
format: date-time
description: The date in UTC format, that tells when the user could try to execute the operation again
schemas:
message:
type: object
required: [id, status, created_at, message, sender_id]
properties:
id:
type: string
description: The ID of the message
status:
type: string
enum: [sent, delivered, read, failed]
description: The status of the message
created_at:
type: string
format: date-time
description:
'The date and time when the message was created in the provider, in UTC. Format: YYYY-MM-DD HH:MM'
message:
type: string
description: The body of the message
sender_id:
type: string
description: The ID of the provider's user that sent the message
reply_by:
type: string
format: date-time
description:
'The date and time when the message can no longer receive a reply, in UTC. Format: YYYY-MM-DD HH:MM'
attachments:
type: array
items:
type: object
required: [id, type, url]
properties:
id:
type: string
description: The ID of the attachment
type:
type: string
description: The mime-type of the attachment
name:
type: string
description: The name of the attachment
size:
type: number
description: The size of the attachment
url:
type: string
description: A URL to the file
link_expires:
type: boolean
default: false
description: Indicates if the attachment URL may expire. If true then *getMessageById* route will be used for fetching new a message with fresh attachment
preview_url:
type: string
description: A URL to a preview picture of the file
conversation:
type: object
required: [id, link, status, seen]
description: An object representing a conversation
properties:
id:
type: string
description: A unique identifier that represents the conversation
link:
type: string
format: url
description: An external link to the conversation outside of Pipedrive. Leave it as an empty string if the provider does not have an external chat window that supports external links
status:
type: string
enum: [open, closed]
description: A string that indicates the status of the conversation
seen:
type: boolean
description: A flag that indicates if the conversation has been seen by the end user
next_messages_cursor:
type: string
description: A reference used by the next paginated request to fetch more messages. Leave empty if there are no more messages to fetch
messages:
type: array
description: The ID of the user's company in Pipedrive
items:
$ref: "#/components/schemas/message"
participants:
type: array
items:
type: object
required: [id, name, role]
description: An object that represents the participant. Exactly one `source_user` and at least one `end_user` participants are required for every conversation
properties:
id:
type: string
description: The ID of the participant
name:
type: string
description: The name of the participant
role:
type: string
enum: [end_user, source_user]
description: Use `source_user` to identify the integration user, and `end_user` to identify the external participant
avatar_url:
type: string
format: url
description: An URL to the participant's avatar picture
fetch_avatar:
type: boolean
description: If true and avatar_url is empty it tries to fetch an avatar from the provider endpoint *getSenderById*
default: false
avatar_expires:
type: boolean
description: If true then *getSenderById* route will be used for fetching new sender with an updated avatar (only once per day)
default: false