-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
13550 lines (13004 loc) · 337 KB
/
swagger.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
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
swagger: '2.0'
info:
title: Fortifi API
version: '3.159.0'
termsOfService: 'https://fortifi.io/legal/terms/api'
description: >
The second version of the Fortifi API is an exciting step forward towards
making it easier for businesses to have open access to their data. We created it
so that you can improve your business flows, and interact with your customers
and data in more innovative ways.
Build something great!
Once you've
[registered your service account](https://yourdomain.fortifi.cloud/developers/service-accounts/) it's easy
to start requesting and posting data to and from Fortifi.
All endpoints are only accessible via https and are located at
`api.fortifi.io`. For instance: you can grab a list of all your brands
by accessing the following URL with your Access Token
(replace ACCESS_TOKEN with your own):
```
https://api.fortifi.io/v1/brands?access_token=ACCESS_TOKEN
```
For non-GET requests, you must pass your ACCESS_TOKEN in the Authorization header else you will get an access denied
response
```
Authorization: Bearer ACCESS_TOKEN
```
## Limits
Be nice. If you're sending too many requests too quickly, we'll send back a
`503` error code (server unavailable).
You are limited to 5000 requests per hour per `access_token`.
## Request Methods
We do our best to have all URLs
[RESTful](https://en.wikipedia.org/wiki/Representational_state_transfer).
Every endpoint (URL) may support one of four different http verbs. GET
requests fetch information about an object, POST requests create objects,
PUT requests update objects, and finally DELETE requests will delete
objects.
## Structure
### The Envelope
Every response is contained by an envelope. That is, each response has a
predictable set of keys with which you can expect to interact:
```json
{
'meta': {
'code': 200
},
'data': {
...
}
}
```
#### META
The meta key is used to communicate extra information about the response to
the developer. If all goes well, you'll only ever see a code key with
value 200.
However, sometimes things go wrong, and in that case you might see a
response like:
```json
{
'meta': {
'type': 'OAuthException',
'code': 400,
'message': '...'
}
}
```
#### DATA
The data key is the meat of the response. It may be a list or dictionary,
but either way this is where you'll find the data you requested.
#### JSONP
If you're writing an AJAX application, and you'd like to wrap our response
with a callback, all you have to do is specify a callback parameter with
any API call:
```
https://api.fortifi.io/v1/brands?access_token=ACCESS_TOKEN&callback=callbackFunction
```
Would respond with:
```js
callbackFunction({
...
});
```
host: api.fortifi.io
schemes:
- https
basePath: /v1
produces:
- application/json
consumes:
- application/json
externalDocs:
description: Find out more about the Fortifi api
url: https://docs.fortifi.io/
securityDefinitions:
OAuth:
type: oauth2
tokenUrl: 'https://api.fortifi.io/oauth/token'
flow: password
scopes:
'basic': Basic Read Access
'visitor': Read/Write On Visitors
'advertiser': Read/Write On Advertisers
'customer': Read/Write On Customers
'customer.readonly': Read Only on Customers
'entity.properties': Read/Write On Entity Properties
'entity.config': Read/Write On Entity Configuration
'orders': Read/Write On Orders
'orders.readonly': Read Only On Orders
'products': Read/Write On Products
'entity.events': Read/Write on Events
'payment.methods': Read/Write On Payment Methods
'contact': Read/Write On Contacts
'polymer.readonly': Read Polymers
'polymer': Read/Write On Polymers
'product.readonly': Read Product Information
'product': Read/Write On Products
'purchase.readonly': Read Only on purchases
'support': Read/Write On Support
'support.readonly': Read Only on Support
'reasons': Read/Write On reasons
'reasons.readonly': Read Only on reasons
'configuration.readonly': Read only for configuration
'reservations': Read/Write reservations
accessToken:
type: apiKey
in: query
name: access_token
tags:
- name: Authentication
- name: Brands
- name: Marketing
- name: Customers
- name: Entities
- name: Orders
- name: Payment Methods
- name: Custom Properties
- name: Configuration
- name: Contacts
- name: Polymers
- name: Messenger
- name: Products
- name: Licence
- name: Support
- name: Service Status
- name: Reasons
- name: Events
- name: Deprecated
- name: Labels
- name: Reservations
- name: Finance
paths:
'/account/verification':
post:
summary: Main Entry for Verification
tags:
- Account
security:
- OAuth:
- account
- accessToken: [ ]
parameters:
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/AccountVerificationPayload'
responses:
200:
description: Account Verification
schema:
$ref: '#/definitions/AccountVerificationResponse'
x-404:
description: Failed Account Verification
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/accountant/transaction/search:
post:
tags:
- Accountant
security:
- OAuth:
- basic
- accessToken: [ ]
summary: Find an Account Transaction
description: |
Find an Account Transaction based on purchase information
parameters:
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/FindTransactionPayload'
responses:
200:
description: Find Transaction Response
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/FindTransactionResponse'
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/advertisers:
post:
deprecated: true
summary: Create a new advertiser
security:
- OAuth:
- advertiser
- accessToken: []
tags:
- Deprecated
parameters:
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/CreateAdvertiserPayload'
responses:
200:
description: Advertiser Created
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/Fid'
x-400:
description: |
Invalid data supplied
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
get:
deprecated: true
summary: List advertisers
security:
- OAuth:
- advertiser
- accessToken: []
tags:
- Deprecated
parameters:
- name: limit
in: query
description: 'Maximum number of records per page (default: 20)'
required: false
type: integer
- name: page
in: query
description: 'Page number (default: 1)'
required: false
type: integer
responses:
200:
description: List of advertisers
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/Advertisers'
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/advertisers/{advertiserFid}:
get:
deprecated: true
security:
- OAuth:
- advertiser
- accessToken: []
tags:
- Deprecated
summary: Retrieve an advertiser
parameters:
- $ref: '#/parameters/advertiserFid'
responses:
200:
description: Loaded Advertiser
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/Advertiser'
x-404:
description: Advertiser not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/advertisers/{advertiserFid}/approved:
put:
deprecated: true
security:
- OAuth:
- advertiser
- accessToken: []
tags:
- Deprecated
summary: Set approved status on an advertiser
parameters:
- $ref: '#/parameters/advertiserFid'
responses:
200:
description: Approved Advertiser
x-404:
description: Advertiser not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
delete:
deprecated: true
summary: Remove approved status on an advertiser
tags:
- Deprecated
security:
- OAuth:
- advertiser
- accessToken: []
parameters:
- $ref: '#/parameters/advertiserFid'
responses:
200:
description: Advertiser no longer approved
x-404:
description: Advertiser not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/advertisers/{advertiserFid}/campaigns:
post:
deprecated: true
summary: Create a new advertiser campaign
security:
- OAuth:
- advertiser
- accessToken: []
tags:
- Deprecated
parameters:
- $ref: '#/parameters/advertiserFid'
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/CreateAdvertiserCampaignPayload'
responses:
200:
description: Campaign Created
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/Fid'
x-400:
description: Invalid data supplied
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/advertisers/{advertiserFid}/campaigns/{advertiserCampaignFid}:
get:
deprecated: true
security:
- OAuth:
- advertiser
- accessToken: []
tags:
- Deprecated
summary: Retrieve an advertiser campaign
parameters:
- $ref: '#/parameters/advertiserFid'
- $ref: '#/parameters/advertiserCampaignFid'
responses:
200:
description: Loaded Campaign
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/AdvertiserCampaign'
x-404:
description: Campaign not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/appstore/{customerFid}/google:
post:
tags:
- Appstore
security:
- OAuth:
- basic
- accessToken: [ ]
summary: Post a new Google notification
description: |
Post a new Google notification.
parameters:
- $ref: '#/parameters/customerFid'
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/CreateGoogleNotificationPayload'
responses:
200:
description: Bool Response
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/BoolMessage'
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/appstore/{customerFid}/apple:
post:
tags:
- Appstore
security:
- OAuth:
- basic
- accessToken: [ ]
summary: Post a new Apple notification
description: |
Post a new Apple notification.
parameters:
- $ref: '#/parameters/customerFid'
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/CreateAppleNotificationPayload'
responses:
200:
description: Bool Response
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/BoolMessage'
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/attachment/{entityFid}':
post:
summary: Create An Attachment
tags:
- attachment
security:
- OAuth:
- attachment
- accessToken: [ ]
parameters:
- $ref: '#/parameters/entityFid'
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/CreateAttachmentPayload'
responses:
200:
description: Attachment Successfully Created
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/BoolMessage'
x-400:
description: Couldn't Create Attachment
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/brands:
get:
tags:
- Brands
security:
- OAuth:
- basic
- accessToken: []
summary: Your Brand
operationId: getBrands
description: |
Retrieve a list of all the brands within your Fortifi account
responses:
200:
description: Brand Information
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/Brands'
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/presetChat:
post:
summary: Create a Preset Chat Instance
tags:
- Chat
security:
- OAuth:
- chat
- accessToken: [ ]
parameters:
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/CreatePresetChatSessionPayload'
responses:
200:
description: Device created/updated
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/PresetChatSessionLink'
x-400:
description: Information provided is not valid
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/presetChat/{sessionId}:
get:
summary: Get a Preset Chat by ID
tags:
- Chat
security:
- OAuth:
- chat
- accessToken: [ ]
parameters:
- $ref: '#/parameters/sessionId'
responses:
200:
description: Preset Chat Session
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/PresetChatSession'
x-404:
description: Preset Chat not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/comments:
post:
summary: Apply a comment/note against a data-node
tags:
- Comments
security:
- OAuth:
- comments
- accessToken: [ ]
parameters:
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/CreateCommentPayload'
responses:
200:
description: Comment/Note created
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/CommentResponse'
x-400:
description: Information provided is not valid
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
/contacts/findByReference/{contactReference}:
get:
summary: Find a person with a reference
tags:
- Contacts
security:
- OAuth:
- contact
- accessToken: [ ]
parameters:
- $ref: '#/parameters/contactReference'
responses:
200:
description: Person info
schema:
allOf:
- $ref: '#/definitions/Envelope'
- properties:
data:
$ref: '#/definitions/Person'
x-404:
description: Person not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/emails/{emailAddress}/confirm':
put:
summary: Confirm email address
tags:
- Contacts
security:
- OAuth:
- contact
- accessToken: [ ]
parameters:
- $ref: '#/parameters/emailAddress'
responses:
200:
description: Email Address Confirmed
x-404:
description: Email Address not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/emails/{emailAddress}/unsubscribe':
put:
summary: Unsubscribe an email address
tags:
- Contacts
security:
- OAuth:
- contact
- accessToken: [ ]
consumes:
- multipart/form-data
parameters:
- $ref: '#/parameters/emailAddress'
- $ref: '#/parameters/unsubscribeType'
- name: brandFid
in: formData
type: string
description: Brand to unsubscribe the email address from
- name: groupFid
in: formData
type: string
description: Group to unsubscribe the email address from
responses:
200:
description: Email Address Unsubscribed
x-404:
description: Email Address not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/emails/{emailAddress}/subscribe':
put:
summary: Subscribe an email address
tags:
- Contacts
security:
- OAuth:
- contact
- accessToken: [ ]
consumes:
- multipart/form-data
parameters:
- $ref: '#/parameters/emailAddress'
- name: brandFid
in: formData
type: string
description: Brand to subscribe the email address from
- name: groupFid
in: formData
type: string
description: Group to unsubscribe the email address from
- $ref: '#/parameters/userAgent'
- $ref: '#/parameters/encoding'
- $ref: '#/parameters/language'
- $ref: '#/parameters/clientIp'
- $ref: '#/parameters/optInStatus'
- $ref: '#/parameters/optInData'
responses:
200:
description: Email Address Subscribed
x-404:
description: Email Address not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/phone/{phoneNumber}/confirm':
put:
summary: Confirm phone number
tags:
- Contacts
security:
- OAuth:
- contact
- accessToken: [ ]
parameters:
- $ref: '#/parameters/phoneNumber'
responses:
200:
description: Phone Number Confirmed
x-404:
description: Phone Number not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/{contactFid}/addresses':
get:
summary: List contact addresses
tags:
- Customers
security:
- OAuth:
- customer
- accessToken: [ ]
parameters:
- $ref: '#/parameters/contactFid'
responses:
200:
schema:
$ref: '#/definitions/Addresses'
description: List of addresses
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
post:
summary: Add an address to a contact
tags:
- Customers
security:
- OAuth:
- customer
- accessToken: [ ]
consumes:
- multipart/form-data
parameters:
- $ref: '#/parameters/contactFid'
- name: payload
in: body
required: true
schema:
$ref: '#/definitions/AddressPayload'
responses:
200:
description: Address Added
x-404:
description: Contact not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/{contactFid}/addresses/{addressFid}':
delete:
summary: Remove an address from a contact
tags:
- Customers
security:
- OAuth:
- customer
- accessToken: [ ]
consumes:
- multipart/form-data
parameters:
- $ref: '#/parameters/contactFid'
- $ref: '#/parameters/addressFid'
responses:
200:
description: Address removed
x-404:
description: Address or contact not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/{contactFid}/emails':
get:
summary: List contact emails
tags:
- Customers
security:
- OAuth:
- customer
- accessToken: [ ]
parameters:
- $ref: '#/parameters/contactFid'
responses:
200:
schema:
$ref: '#/definitions/Emails'
description: List of emails
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
post:
summary: Add an email address to a contact
tags:
- Customers
security:
- OAuth:
- customer
- accessToken: [ ]
consumes:
- multipart/form-data
parameters:
- $ref: '#/parameters/contactFid'
- name: emailAddress
in: formData
required: true
type: string
- name: setAsDefault
in: formData
required: false
type: boolean
responses:
200:
description: Email Added
x-404:
description: Contact not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/{contactFid}/emails/{emailFid}':
delete:
summary: Remove an email from a contact
tags:
- Customers
security:
- OAuth:
- customer
- accessToken: [ ]
consumes:
- multipart/form-data
parameters:
- $ref: '#/parameters/contactFid'
- $ref: '#/parameters/emailFid'
responses:
200:
description: Email removed
x-404:
description: Email or contact not found
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
'/contacts/{contactFid}/phones':
get:
summary: List contact phones
tags:
- Customers
security:
- OAuth:
- customer
- accessToken: [ ]
parameters:
- $ref: '#/parameters/contactFid'
responses:
200:
schema:
$ref: '#/definitions/Phones'
description: List of phones
default:
description: Error
schema:
$ref: '#/definitions/Envelope'
post:
summary: Add a phone number to a contact
tags:
- Customers
security:
- OAuth:
- customer