Skip to content

Commit

Permalink
Merge pull request #17 from BitGo/update-bitgo-api-docs
Browse files Browse the repository at this point in the history
Update API reference on BitGo Developer Portal
  • Loading branch information
ericcrosson-bitgo authored Dec 23, 2024
2 parents 0f660f2 + 879a8e8 commit 8cfe363
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22445,6 +22445,38 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/PlatformError'
/api/v2/enterprise/{enterpriseId}/regionalfeatures:
get:
summary: Get enterprise regional features
description: Get the regional features available to an enterprise by its location.
operationId: v2.enterprise.regional.features.get
tags:
- Enterprise
parameters:
- name: enterpriseId
in: path
required: true
schema:
$ref: '#/components/schemas/EnterpriseIdString'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RegionalFeatures'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/PlatformError'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/PlatformError'
/api/v2/enterprise/{enterpriseId}/tssconfig:
get:
summary: Get enterprise MPC config
Expand Down Expand Up @@ -48276,6 +48308,23 @@ components:
type: string
- type: object
additionalProperties: {}
RegionalFeatures:
title: RegionalFeatures
type: object
properties:
trading:
type: boolean
custody:
type: boolean
lending:
type: boolean
borrowing:
type: boolean
required:
- trading
- custody
- lending
- borrowing
OrganizationRole:
title: OrganizationRole
type: string
Expand Down

0 comments on commit 8cfe363

Please sign in to comment.