Skip to content

Commit 8cfe363

Browse files
Merge pull request #17 from BitGo/update-bitgo-api-docs
Update API reference on BitGo Developer Portal
2 parents 0f660f2 + 879a8e8 commit 8cfe363

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

api.yaml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22445,6 +22445,38 @@ paths:
2244522445
application/json:
2244622446
schema:
2244722447
$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'
2244822480
/api/v2/enterprise/{enterpriseId}/tssconfig:
2244922481
get:
2245022482
summary: Get enterprise MPC config
@@ -48276,6 +48308,23 @@ components:
4827648308
type: string
4827748309
- type: object
4827848310
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
4827948328
OrganizationRole:
4828048329
title: OrganizationRole
4828148330
type: string

0 commit comments

Comments
 (0)