Skip to content

Commit f09143b

Browse files
feat: update bitgo-api-docs
This commit updates the BitGo API.
1 parent c03c45f commit f09143b

File tree

1 file changed

+207
-0
lines changed

1 file changed

+207
-0
lines changed

api.yaml

Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35117,6 +35117,12 @@ components:
3511735117
- apiSecret
3511835118
- clientAccountId
3511935119
- companyRegistrationNumber
35120+
ClosedByUnion:
35121+
title: ClosedByUnion
35122+
type: string
35123+
enum:
35124+
- client
35125+
- admin
3512035126
Coin:
3512135127
title: Coin
3512235128
description: A cryptocurrency or token ticker symbol.
@@ -36380,6 +36386,88 @@ components:
3638036386
anyOf:
3638136387
- $ref: '#/components/schemas/WhitelistedAddressValue'
3638236388
- $ref: '#/components/schemas/NonWhitelistedAddressValue'
36389+
DisputeClosureOutput:
36390+
title: DisputeClosureOutput
36391+
type: object
36392+
properties:
36393+
id:
36394+
type: string
36395+
title: uuid
36396+
closedBy:
36397+
$ref: '#/components/schemas/ClosedByUnion'
36398+
userId:
36399+
type: string
36400+
minLength: 1
36401+
notes:
36402+
type: string
36403+
minLength: 1
36404+
adjustedSettlementTransfers:
36405+
$ref: '#/components/schemas/DisputedSettlementTransfersOutput'
36406+
required:
36407+
- id
36408+
- closedBy
36409+
- userId
36410+
- notes
36411+
- adjustedSettlementTransfers
36412+
DisputedSettlementTransfersOutput:
36413+
title: DisputedSettlementTransfersOutput
36414+
type: array
36415+
items:
36416+
type: object
36417+
properties:
36418+
id:
36419+
type: string
36420+
title: uuid
36421+
createdAt:
36422+
type: string
36423+
format: date-time
36424+
title: ISO Date String
36425+
updatedAt:
36426+
type: string
36427+
format: date-time
36428+
title: ISO Date String
36429+
currency:
36430+
type: string
36431+
minLength: 1
36432+
settlementId:
36433+
type: string
36434+
title: uuid
36435+
disputeClosureId:
36436+
type: string
36437+
title: uuid
36438+
quantity:
36439+
$ref: '#/components/schemas/NonZeroBigAmount'
36440+
txIds:
36441+
type: array
36442+
items:
36443+
type: string
36444+
minLength: 1
36445+
status:
36446+
$ref: '#/components/schemas/SettlementTransferStatus'
36447+
sourceTradingAccountId:
36448+
type: string
36449+
minLength: 1
36450+
sourceNetworkAccountId:
36451+
type: string
36452+
title: uuid
36453+
destinationTradingAccountId:
36454+
type: string
36455+
minLength: 1
36456+
destinationNetworkAccountId:
36457+
type: string
36458+
title: uuid
36459+
required:
36460+
- id
36461+
- createdAt
36462+
- updatedAt
36463+
- currency
36464+
- disputeClosureId
36465+
- quantity
36466+
- txIds
36467+
- status
36468+
- sourceTradingAccountId
36469+
- destinationTradingAccountId
36470+
- destinationNetworkAccountId
3638336471
DistributedCustody:
3638436472
title: DistributedCustody
3638536473
type: object
@@ -53579,6 +53667,19 @@ components:
5357953667
properties: {}
5358053668
- $ref: '#/components/schemas/V1AllocationsReleasedPayload'
5358153669
- $ref: '#/components/schemas/V1ErrorPayload'
53670+
V1AssignedDisputesWithClosureOutput:
53671+
title: V1AssignedDisputesWithClosureOutput
53672+
type: array
53673+
items:
53674+
allOf:
53675+
- type: object
53676+
properties:
53677+
settledInSettlementId:
53678+
type: string
53679+
title: uuid
53680+
required:
53681+
- settledInSettlementId
53682+
- $ref: '#/components/schemas/V1ClosedDisputeWithClosureOutput'
5358253683
V1ClearedAllocation:
5358353684
title: V1ClearedAllocation
5358453685
type: object
@@ -53676,9 +53777,15 @@ components:
5367653777
$ref: '#/components/schemas/V1SettlementOutput'
5367753778
settlementTransfers:
5367853779
$ref: '#/components/schemas/MaskedV1SettlementTransfersOutput'
53780+
settlingDisputes:
53781+
$ref: '#/components/schemas/V1AssignedDisputesWithClosureOutput'
53782+
settlementDisputes:
53783+
$ref: '#/components/schemas/V1DisputesWithClosureOutput'
5367953784
required:
5368053785
- settlement
5368153786
- settlementTransfers
53787+
- settlingDisputes
53788+
- settlementDisputes
5368253789
V1ClientGetSettlementTransfersOkPayload:
5368353790
title: V1ClientGetSettlementTransfersOkPayload
5368453791
type: object
@@ -53727,6 +53834,20 @@ components:
5372753834
$ref: '#/components/schemas/V1ClientsOutput'
5372853835
required:
5372953836
- client
53837+
V1ClosedDisputeWithClosureOutput:
53838+
title: V1ClosedDisputeWithClosureOutput
53839+
allOf:
53840+
- type: object
53841+
properties:
53842+
disputeClosureId:
53843+
type: string
53844+
title: uuid
53845+
disputeClosure:
53846+
$ref: '#/components/schemas/DisputeClosureOutput'
53847+
required:
53848+
- disputeClosureId
53849+
- disputeClosure
53850+
- $ref: '#/components/schemas/V1DisputeOutput'
5373053851
V1CompleteSettlementOutput:
5373153852
title: V1CompleteSettlementOutput
5373253853
type: object
@@ -53774,6 +53895,10 @@ components:
5377453895
type: boolean
5377553896
cutoffAt:
5377653897
type: string
53898+
format: date-time
53899+
title: ISO Date String
53900+
disputed:
53901+
type: boolean
5377753902
required:
5377853903
- id
5377953904
- partnerId
@@ -54084,6 +54209,70 @@ components:
5408454209
- $ref: '#/components/schemas/V1ConnectionWithOwnerAndTargetListResponse'
5408554210
required:
5408654211
- listingEntries
54212+
V1DisputeOutput:
54213+
title: V1DisputeOutput
54214+
type: object
54215+
properties:
54216+
id:
54217+
type: string
54218+
title: uuid
54219+
createdAt:
54220+
type: string
54221+
format: date-time
54222+
title: ISO Date String
54223+
updatedAt:
54224+
type: string
54225+
format: date-time
54226+
title: ISO Date String
54227+
connectionId:
54228+
type: string
54229+
title: uuid
54230+
disputedSettlementId:
54231+
type: string
54232+
title: uuid
54233+
settledInSettlementId:
54234+
type: string
54235+
title: uuid
54236+
userId:
54237+
type: string
54238+
minLength: 1
54239+
reason:
54240+
type: string
54241+
minLength: 1
54242+
retracted:
54243+
type: boolean
54244+
retractedBy:
54245+
type: string
54246+
minLength: 1
54247+
retractedAt:
54248+
type: string
54249+
format: date-time
54250+
title: ISO Date String
54251+
disputeClosureId:
54252+
type: string
54253+
title: uuid
54254+
retractedReason:
54255+
type: string
54256+
minLength: 1
54257+
required:
54258+
- id
54259+
- createdAt
54260+
- updatedAt
54261+
- connectionId
54262+
- disputedSettlementId
54263+
- userId
54264+
- reason
54265+
- retracted
54266+
V1DisputesWithClosureOutput:
54267+
title: V1DisputesWithClosureOutput
54268+
type: array
54269+
items:
54270+
allOf:
54271+
- type: object
54272+
properties:
54273+
disputeClosure:
54274+
$ref: '#/components/schemas/DisputeClosureOutput'
54275+
- $ref: '#/components/schemas/V1DisputeOutput'
5408754276
V1EnterpriseSupportedCurrenciesResponse:
5408854277
title: V1EnterpriseSupportedCurrenciesResponse
5408954278
type: object
@@ -54169,6 +54358,10 @@ components:
5416954358
type: boolean
5417054359
cutoffAt:
5417154360
type: string
54361+
format: date-time
54362+
title: ISO Date String
54363+
disputed:
54364+
type: boolean
5417254365
required:
5417354366
- id
5417454367
- partnerId
@@ -54246,9 +54439,15 @@ components:
5424654439
- sourceTradingAccountId
5424754440
- destinationTradingAccountId
5424854441
- destinationNetworkAccountId
54442+
settlingDisputes:
54443+
$ref: '#/components/schemas/V1AssignedDisputesWithClosureOutput'
54444+
settlementDisputes:
54445+
$ref: '#/components/schemas/V1DisputesWithClosureOutput'
5424954446
required:
5425054447
- settlement
5425154448
- settlementTransfers
54449+
- settlingDisputes
54450+
- settlementDisputes
5425254451
V1GlobalListingResponse:
5425354452
title: V1GlobalListingResponse
5425454453
type: object
@@ -54845,6 +55044,10 @@ components:
5484555044
type: boolean
5484655045
cutoffAt:
5484755046
type: string
55047+
format: date-time
55048+
title: ISO Date String
55049+
disputed:
55050+
type: boolean
5484855051
required:
5484955052
- id
5485055053
- partnerId
@@ -54915,6 +55118,10 @@ components:
5491555118
type: boolean
5491655119
cutoffAt:
5491755120
type: string
55121+
format: date-time
55122+
title: ISO Date String
55123+
disputed:
55124+
type: boolean
5491855125
required:
5491955126
- id
5492055127
- partnerId

0 commit comments

Comments
 (0)