-
Notifications
You must be signed in to change notification settings - Fork 5
/
openapi.yaml
8452 lines (8349 loc) · 243 KB
/
openapi.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
openapi: 3.0.0
info:
title: Notabene
description: >
The Notabene API is organized around
[REST](http://en.wikipedia.org/wiki/Representational_State_Transfer).
Our API accepts [JSON-encoded](http://www.json.org/) request bodies, returns
[JSON-encoded](http://www.json.org/) responses, and uses standard [HTTP
status codes](https://httpstatuses.com/) and verbs.
All requests to the Notabene API should be made to one of the following root
URLs:
* Test: https://api.notabene.dev
* Live: https://api.notabene.id
All API requests must be made over HTTPS; calls made over plain HTTP will
fail. API requests without authentication will also fail - see the
Authentication section for information on correctly authenticating calls to
the Notabene API.
### Just getting started?
Check out our [DevX](https://devx.notabene.id) guides for more information
about how best to integrate with Notabene.
version: 1.0.0
contact:
name: API Support
email: tech@notabene.id
url: https://doc.notabene.id
x-logo:
url: >-
https://uploads-ssl.webflow.com/5e68f0772de982756aa8c1a4/5eee5fb470215e6ecdc34b94_Full_transparent_black_1280x413.svg
altText: Notabene logo
x-konfig-ignore:
object-with-no-properties: true
servers:
- description: Production
url: https://api.notabene.id
- description: Test
url: https://api.notabene.dev
tags:
- description: >
Transfers represent blockchain transfers sent by or to your VASP.
## IVMS101
Notabene utilizes the IVMS 101 interVASP messaging standard to transmit
required originator and beneficiary information.
**More information: [IVMS 101](https://intervasp.org/)**
<SchemaDefinition schemaRef="#/components/schemas/IVMS101" />
name: Transactions
- description: >
The Notabene Trust Framework refers to the network of VASPs that send and
receive transfers.
You can browse through the [Notabene
Directory](https://app.notabene.id/directory) to see more information
about which VASPs are receiving Travel Rule transfers and the protocols
they follow.
name: TrustFramework
- name: Chainalysis
- description: >
Various documents can be uploaded using the Notabene API such as
certificates of incorporation, due-dilligence questionnaires etc.
name: Documents
- name: Address Book
- name: LexisNexis
- name: TRM
- name: TRMSanctions
- name: Coinfirm
- name: Bitgo
- name: ComplyAdvantage
- name: Refinitiv
- name: MerkleScience
- name: Elliptic
- name: ProtocolAgents
- description: >
VASPs can be administered using the Notabene API. Users can be added or
removed from a VASP allowing them to login to the [Notabene
Dashboard](http://app.notabene.id) to manage transfers, rules,
integrations and more.
## VASP
<SchemaDefinition schemaRef="#/components/schemas/VASPInfo" />
name: VASPAdmin
x-displayName: VASP Administration
- description: >
Setting up transfer rules makes accepting and declining incoming transfers
manageable at scale. Rules can be setup to automatically accept or decline
transfers based on sanctions checks, wallet address queries and more.
name: Rules
- name: Webhooks
- name: Credentials
- description: >
The Notabene API uses API tokens to authenticate requests.
Authentication to the API is performed via [bearer
auth](https://swagger.io/docs/specification/authentication/bearer-authentication/),
so require an `Authorization: Bearer TOKEN` HTTP header.
name: authentication
x-displayName: Authentication
- description: The customer represents the originator of the transfer.
name: Customer
- name: Address webhook
- name: Transaction webhook
- name: Protocol Gateways
- name: Settings
- name: Providers
- name: Chainalysis2
- name: Trust Framework
- name: Jurisdictions
- description: >
The Notabene API takes advantage of [Decentralized
Identifiers](https://www.w3.org/TR/did-core/#dfn-decentralized-identifiers)
(DIDs) that enable
[verifiable](https://en.wikipedia.org/wiki/Verifiable_credentials),
decentralized [digital
identity](https://en.wikipedia.org/wiki/Digital_identity).
name: did_model
x-displayName: DIDs
- description: >
Errors in the Notabene API follow conventional HTTP response codes to
indicate errors. Generally, `2xx` response codes indicate success, `4xx`
response codes indicate client error, and `5xx` errors indicate errors
with the Notabene API.
### Response Code Summary
- **200 - OK** - The request was successfully handled
- **400 - Bad Request** - The API could not process the request due to an
incorrect request
- **401 - Unauthorized** - The user of the API was not authenticated
- **403 - Forbidden** - The user of the API was not authorized to make the
request
- **404 - Not Found** - The requested resource could not be found
- **500, 502, 503, 504 - Server Errors** - Something went wrong with the
Notabene API
name: errors
x-displayName: Errors
paths:
/address/upload/{vaspDID}:
get:
tags:
- Address Book
summary: Get upload URL
operationId: AddressBook_requestUploadUrl
security:
- bearerAuth: []
description: >
To upload an address book you must first request a URL to uploda to.
Upload URLs are short-lived AWS S3 bucket URLs.
parameters:
- description: VASP DID
name: vaspDID
in: path
schema:
$ref: '#/components/schemas/common_DID'
required: true
responses:
'200':
description: URL where to upload the address list
content:
application/json:
schema:
$ref: '#/components/schemas/common_UploadURLInfo'
/address/registerCustomer:
post:
tags:
- Address Book
summary: Register address
operationId: AddressBook_registerCustomer
security:
- bearerAuth: []
description: |
Registers the blockchain address of a customer in your address book.
requestBody:
description: Customer Address Info
content:
application/json:
schema:
$ref: '#/components/schemas/RegisterCustomerInput'
responses:
'200':
description: Addess Owner is already registered?
/v1/addresses/address-ownerships/{address}:
get:
tags:
- Address Book
summary: Get address ownership information
operationId: AddressBook_getOwnershipInfo
security:
- bearerAuth: []
description: |
Get the ownership information about a customer blockchain address.
parameters:
- name: address
in: path
schema:
$ref: '#/components/schemas/BlockchainAddress'
required: true
- description: VASP DID
name: vasp_did
in: query
required: true
schema:
$ref: '#/components/schemas/common_DID'
- name: asset
in: query
required: true
schema:
$ref: '#/components/schemas/Asset'
responses:
'200':
description: Address Ownership Information
content:
application/json:
schema:
$ref: '#/components/schemas/AddressOwnershipResponse'
'404':
description: Address Ownership Information Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/v1/addresses:
get:
tags:
- Address Book
summary: Get addresses registered
operationId: AddressBook_getRegisteredAddresses
security:
- bearerAuth: []
description: |
Get the addresses registered for a VASP.
parameters:
- description: VASP DID
name: vasp_did
in: query
required: true
schema:
$ref: '#/components/schemas/common_DID'
- name: source
in: query
required: true
schema:
$ref: '#/components/schemas/BlockchainAddressQuerySource'
- name: source_type
in: query
schema:
$ref: '#/components/schemas/QuerySourceType'
- name: page
in: query
schema:
$ref: '#/components/schemas/PaginationPage'
- name: per_page
in: query
schema:
maximum: 1000
$ref: '#/components/schemas/PaginationPerPage'
responses:
'200':
description: Addresses Registered
content:
application/json:
schema:
$ref: '#/components/schemas/AddressesResponse'
delete:
tags:
- Address Book
summary: Delete addresses
operationId: AddressBook_removeAddress
security:
- bearerAuth: []
description: |
Delete addresses previously added to the address book.
parameters:
- description: Comma-separated list of addresses to delete
name: addresses
in: query
required: true
schema:
type: string
pattern: ^([^,]+,)*([^,]+)$
example: 0x123,0x456
- description: VASP DID
name: vasp_did
in: query
required: true
schema:
$ref: '#/components/schemas/common_DID'
responses:
'202':
description: Addresses Deletion Processing
content:
application/json:
schema:
$ref: '#/components/schemas/AddressBookRemoveAddressResponse'
/auth/customerToken:
post:
tags:
- authentication
summary: Get customer access token
operationId: Authentication_getCustomerAccessToken
security:
- bearerAuth: []
description: |
Get a Notabene API access token on behalf of a customer
requestBody:
description: Customer Token information
content:
application/json:
schema:
$ref: '#/components/schemas/auth_CustomerTokenInput'
responses:
'200':
description: API Token
content:
application/json:
schema:
$ref: >-
#/components/schemas/AuthenticationGetCustomerAccessTokenResponse
/auth/userinfo/update:
post:
tags:
- authentication
summary: Update user
operationId: Authentication_updateUser
security:
- bearerAuth: []
description: |
Updates the currently authenticated user
requestBody:
description: User Info update information
content:
application/json:
schema:
$ref: '#/components/schemas/auth_UserInfoUpdate'
responses:
'200':
description: User info updated.
content:
application/json:
schema:
$ref: '#/components/schemas/auth_UserInfo'
/auth/credentials/{vaspDID}:
post:
tags:
- Credentials
summary: Create new API credentials
operationId: Credentials_createNewApi
security:
- bearerAuth: []
description: Create new auth0 API credentials
parameters:
- in: path
name: vaspDID
schema:
$ref: '#/components/schemas/common_DID'
required: true
requestBody:
description: Additional options
content:
application/json:
schema:
$ref: '#/components/schemas/CredentialsCreateNewApiRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/CredentialsCreateNewApiResponse'
delete:
tags:
- Credentials
summary: Delete API credentials
operationId: Credentials_deleteAuth0ApiCredentials
security:
- bearerAuth: []
description: Delete auth0 API credentials
parameters:
- in: path
name: vaspDID
schema:
$ref: '#/components/schemas/common_DID'
required: true
- description: auth0 clientId
name: clientid
in: query
schema:
type: string
responses:
'200':
description: Success
get:
tags:
- Credentials
summary: Get API credentials
operationId: Credentials_getAuth0Credentials
security:
- bearerAuth: []
description: Get auth0 API credentials
parameters:
- in: path
name: vaspDID
schema:
$ref: '#/components/schemas/common_DID'
required: true
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/CredentialsGetAuth0CredentialsResponse'
/auth/vaspUsers/{vaspDID}:
get:
tags:
- VASPAdmin
summary: List VASP users
operationId: VaspAdmin_listVaspUsers
security:
- bearerAuth: []
description: >
Returns an array of users and their roles that have been added to manage
a VASP.
parameters:
- description: VASP DID
name: vaspDID
in: path
schema:
$ref: '#/components/schemas/common_DID'
required: true
responses:
'200':
description: VASP users list with their roles
content:
application/json:
schema:
$ref: '#/components/schemas/VaspAdminListVaspUsersResponse'
/auth/addusertovasp:
post:
tags:
- VASPAdmin
summary: Add user to VASP
operationId: VaspAdmin_addUserToVasp
security:
- bearerAuth: []
description: >
Adds a user to a VASP by email. Added users will be sent an email to
accept the invite.
requestBody:
description: New user information"
content:
application/json:
schema:
$ref: '#/components/schemas/auth_AddUserToVASPInput'
responses:
'200':
description: User added and email sent to user
/auth/removeuserfromvasp:
post:
tags:
- VASPAdmin
summary: Remove user from VASP
operationId: VaspAdmin_removeUserFromVasp
security:
- bearerAuth: []
description: >
Remove a user from a VASP. The removed user will no longer be able to
login to the dashboard to manage the VASP.
requestBody:
description: Remove user data
content:
application/json:
schema:
$ref: '#/components/schemas/auth_RemoveUserFromVASPInput'
responses:
'200':
description: User removed from VASP
/auth/customer:
post:
tags:
- Customer
summary: Create customer
operationId: Customer_createNewCustomer
security:
- bearerAuth: []
description: |
Creates a new customer
requestBody:
description: Customer info
content:
application/json:
schema:
$ref: '#/components/schemas/NewCustomerInput'
responses:
'200':
description: Customer created
content:
application/json:
schema:
$ref: '#/components/schemas/Customer'
/auth/customer/{vaspDID}/{customerDID}:
get:
tags:
- Customer
summary: Get customer
operationId: Customer_getByDids
security:
- bearerAuth: []
description: |
Returns a customer of a VASP by customer DID
parameters:
- description: VASP DID
name: vaspDID
in: path
schema:
$ref: '#/components/schemas/common_DID'
required: true
- description: Customer DID
name: customerDID
in: path
schema:
$ref: '#/components/schemas/common_DID'
required: true
responses:
'200':
description: Customer info
content:
application/json:
schema:
$ref: '#/components/schemas/Customer'
/integrations/{vaspDID}/address-query-webhook:
post:
tags:
- Address webhook
summary: Register a Webhook for querying addresses
operationId: AddressWebhook_registerQuery
security:
- bearerAuth: []
description: |
Register a Webhook for querying addresses
parameters:
- description: VASP DID
name: vaspDID
in: path
schema:
$ref: '#/components/schemas/common_DID'
required: true
requestBody:
description: Register Webhook Input
content:
application/json:
schema:
$ref: '#/components/schemas/IntegrationsRegisterAddressWebhookInput'
responses:
'200':
description: Secret to validate Notabene's request
content:
application/json:
schema:
$ref: '#/components/schemas/common_RegisterAddressWebhookResponse'
delete:
tags:
- Address webhook
summary: Delete a Webhook for querying addresses
operationId: AddressWebhook_deleteWebhook
security:
- bearerAuth: []
description: |
Delete a Webhook for querying addresses
parameters:
- description: VASP DID
name: vaspDID
in: path
schema:
$ref: '#/components/schemas/common_DID'
required: true
responses:
'200':
description: Delete message
content:
application/json:
schema:
$ref: '#/components/schemas/common_DeleteAddressWebhookResponse'
/integrations/config/txnotification:
post:
tags:
- Transaction webhook
summary: Create a notification webhook
operationId: TransactionWebhook_createCallbackUrl
security:
- bearerAuth: []
description: >
Creates a webhook for the passed callback URL that will be notified
every time a transfer changes state.
requestBody:
description: Tx Notification Config Information
content:
application/json:
schema:
$ref: '#/components/schemas/IntegrationConfigTxNotificationInput'
responses:
'200':
description: Config saved
deprecated: true
/integrations/txnotification/{vaspDID}:
get:
tags:
- Transaction webhook
summary: Get a notification webhook
operationId: TransactionWebhook_getNotificationWebhook
security:
- bearerAuth: []
description: |
Returns a webhook that has been setup for your account.
parameters:
- in: path
name: vaspDID
schema:
$ref: '#/components/schemas/common_DID'
required: true
responses:
'200':
description: Tx Notification Config Info
content:
application/json:
schema:
$ref: '#/components/schemas/IntegrationInfoTxNotification'
/integrations/providers/{vaspDID}:
get:
tags:
- Providers
summary: Get Third Party Providers
operationId: Providers_getConfigured
security:
- bearerAuth: []
description: |
Retrieve all of the third party providers configured for the VASP.
parameters:
- in: path
name: vaspDID
schema:
$ref: '#/components/schemas/common_DID'
required: true
responses:
'200':
description: Get Third Party Providers Response
content:
application/json:
schema:
$ref: '#/components/schemas/IntegrationsGetThirdPartyProviders'
/integrations/chainalysis/addressinfo:
post:
tags:
- Chainalysis
summary: Chainalysis address info
operationId: Chainalysis_getAddressInfo
security:
- bearerAuth: []
description: Chainalysis address info
requestBody:
description: Chainalysis address info
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisGetAddressInfoRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisGetAddressInfoResponse'
/integrations/chainalysis/credentials:
put:
tags:
- Chainalysis
summary: Set Chainalysis credentials
operationId: Chainalysis_setCredentials
security:
- bearerAuth: []
description: Set Chainalysis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
requestBody:
description: Set Chainalysis credentials
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisSetCredentialsRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisSetCredentialsResponse'
delete:
tags:
- Chainalysis
summary: Delete Chainalysis credentials
operationId: Chainalysis_deleteCredentials
security:
- bearerAuth: []
description: Delete Chainalysis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisDeleteCredentialsResponse'
get:
tags:
- Chainalysis
summary: Check Chainalysis credentials
operationId: Chainalysis_checkCredentials
security:
- bearerAuth: []
description: Check Chainalysis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisCheckCredentialsResponse'
/integrations/chainalysis2/addressinfo:
post:
tags:
- Chainalysis2
summary: Chainalysis v2 address info
operationId: Chainalysis2_getAddressInfo
security:
- bearerAuth: []
description: Chainalysis v2 address info
requestBody:
description: Chainalysis v2 address info
content:
application/json:
schema:
$ref: '#/components/schemas/Chainalysis2GetAddressInfoRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/Chainalysis2GetAddressInfoResponse'
/integrations/chainalysis2/credentials:
put:
tags:
- Chainalysis
summary: Set Chainalysis credentials
operationId: Chainalysis_setCredentials
security:
- bearerAuth: []
description: Set Chainalysis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
requestBody:
description: Set Chainalysis credentials
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisSetCredentialsRequest1'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisSetCredentials200Response'
delete:
tags:
- Chainalysis
summary: Delete Chainalysis credentials
operationId: Chainalysis_deleteCredentials
security:
- bearerAuth: []
description: Delete Chainalysis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisDeleteCredentials200Response'
get:
tags:
- Chainalysis
summary: Check Chainalysis credentials
operationId: Chainalysis_checkCredentials
security:
- bearerAuth: []
description: Check Chainalysis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/ChainalysisCheckCredentials200Response'
/integrations/lexisnexis/sanctions:
post:
tags:
- LexisNexis
summary: LexisNexis sanctions check
operationId: LexisNexis_performSanctionsCheck
security:
- bearerAuth: []
description: LexisNexis sanctions check
requestBody:
description: LexisNexis sanctions check
content:
application/json:
schema:
$ref: '#/components/schemas/LexisNexisPerformSanctionsCheckRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/LexisNexisPerformSanctionsCheckResponse'
/integrations/lexisnexis/credentials:
put:
tags:
- LexisNexis
summary: Set LexisNexis credentials
operationId: LexisNexis_setCredentials
security:
- bearerAuth: []
description: Set LexisNexis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
requestBody:
description: Set LexisNexis credentials
content:
application/json:
schema:
$ref: '#/components/schemas/LexisNexisSetCredentialsRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/LexisNexisSetCredentialsResponse'
delete:
tags:
- LexisNexis
summary: Delete LexisNexis credentials
operationId: LexisNexis_deleteCredentials
security:
- bearerAuth: []
description: Delete LexisNexis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/LexisNexisDeleteCredentialsResponse'
get:
tags:
- LexisNexis
summary: Check LexisNexis credentials
operationId: LexisNexis_checkCredentials
security:
- bearerAuth: []
description: Check LexisNexis credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/LexisNexisCheckCredentialsResponse'
/integrations/trm/addressinfo:
post:
tags:
- TRM
summary: TRM address info
operationId: Trm_getAddressInfo
security:
- bearerAuth: []
description: TRM address info
requestBody:
description: TRM address info
content:
application/json:
schema:
$ref: '#/components/schemas/TrmGetAddressInfoRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/TrmGetAddressInfoResponse'
/integrations/trm/credentials:
put:
tags:
- TRM
summary: Set TRM credentials
operationId: Trm_setCredentials
security:
- bearerAuth: []
description: Set TRM credentials
parameters:
- name: vaspDID
required: true
in: query
schema:
$ref: '#/components/schemas/common_DID'
requestBody:
description: Set TRM credentials
content:
application/json:
schema:
$ref: '#/components/schemas/TrmSetCredentialsRequest'
responses:
'200':
description: Success