File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change @@ -22445,6 +22445,38 @@ paths:
22445
22445
application/json:
22446
22446
schema:
22447
22447
$ref: '#/components/schemas/PlatformError'
22448
+ /api/v2/enterprise/{enterpriseId}/regionalfeatures:
22449
+ get:
22450
+ summary: Get enterprise regional features
22451
+ description: Get the regional features available to an enterprise by its location.
22452
+ operationId: v2.enterprise.regional.features.get
22453
+ tags:
22454
+ - Enterprise
22455
+ parameters:
22456
+ - name: enterpriseId
22457
+ in: path
22458
+ required: true
22459
+ schema:
22460
+ $ref: '#/components/schemas/EnterpriseIdString'
22461
+ responses:
22462
+ '200':
22463
+ description: OK
22464
+ content:
22465
+ application/json:
22466
+ schema:
22467
+ $ref: '#/components/schemas/RegionalFeatures'
22468
+ '400':
22469
+ description: Bad Request
22470
+ content:
22471
+ application/json:
22472
+ schema:
22473
+ $ref: '#/components/schemas/PlatformError'
22474
+ '404':
22475
+ description: Not Found
22476
+ content:
22477
+ application/json:
22478
+ schema:
22479
+ $ref: '#/components/schemas/PlatformError'
22448
22480
/api/v2/enterprise/{enterpriseId}/tssconfig:
22449
22481
get:
22450
22482
summary: Get enterprise MPC config
@@ -48276,6 +48308,23 @@ components:
48276
48308
type: string
48277
48309
- type: object
48278
48310
additionalProperties: {}
48311
+ RegionalFeatures:
48312
+ title: RegionalFeatures
48313
+ type: object
48314
+ properties:
48315
+ trading:
48316
+ type: boolean
48317
+ custody:
48318
+ type: boolean
48319
+ lending:
48320
+ type: boolean
48321
+ borrowing:
48322
+ type: boolean
48323
+ required:
48324
+ - trading
48325
+ - custody
48326
+ - lending
48327
+ - borrowing
48279
48328
OrganizationRole:
48280
48329
title: OrganizationRole
48281
48330
type: string
You can’t perform that action at this time.
0 commit comments