You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api.yaml
+47-6Lines changed: 47 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -26278,6 +26278,35 @@ paths:
26278
26278
application/json:
26279
26279
schema:
26280
26280
$ref: '#/components/schemas/PlatformError'
26281
+
/api/v2/user/validatepasswordresettoken:
26282
+
get:
26283
+
summary: Validate Password Reset Token
26284
+
description: Route to validate a user's password reset token.
26285
+
operationId: v2.user.validatepasswordresettoken
26286
+
tags:
26287
+
- User
26288
+
parameters:
26289
+
- name: token
26290
+
in: query
26291
+
schema:
26292
+
type: string
26293
+
responses:
26294
+
'200':
26295
+
description: OK
26296
+
content:
26297
+
application/json: {}
26298
+
'400':
26299
+
description: Bad Request
26300
+
content:
26301
+
application/json:
26302
+
schema:
26303
+
$ref: '#/components/schemas/PlatformError'
26304
+
'404':
26305
+
description: Not Found
26306
+
content:
26307
+
application/json:
26308
+
schema:
26309
+
$ref: '#/components/schemas/PlatformError'
26281
26310
/api/v2/wallet/{walletId}:
26282
26311
get:
26283
26312
summary: Get wallet by ID
@@ -28263,7 +28292,6 @@ paths:
28263
28292
- Frankfurt DE Trust
28264
28293
- BitGo Singapore
28265
28294
- BitGo Korea
28266
-
- BitGo Mena Fze
28267
28295
- BitGo Custody MENA FZE
28268
28296
- BitGo Sister Trust 1
28269
28297
responses:
@@ -28368,7 +28396,6 @@ paths:
28368
28396
- Frankfurt DE Trust
28369
28397
- BitGo Singapore
28370
28398
- BitGo Korea
28371
-
- BitGo Mena Fze
28372
28399
- BitGo Custody MENA FZE
28373
28400
- BitGo Sister Trust 1
28374
28401
responses:
@@ -34467,7 +34494,6 @@ components:
34467
34494
- Frankfurt DE Trust
34468
34495
- BitGo Singapore
34469
34496
- BitGo Korea
34470
-
- BitGo Mena Fze
34471
34497
- BitGo Custody MENA FZE
34472
34498
- BitGo Sister Trust 1
34473
34499
- BitGo Inc
@@ -40231,7 +40257,6 @@ components:
40231
40257
- Frankfurt DE Trust
40232
40258
- BitGo Singapore
40233
40259
- BitGo Korea
40234
-
- BitGo Mena Fze
40235
40260
- BitGo Custody MENA FZE
40236
40261
- BitGo Sister Trust 1
40237
40262
- BitGo Inc
@@ -40656,6 +40681,24 @@ components:
40656
40681
rewardBalanceString:
40657
40682
type: string
40658
40683
description: The staking reward balance in base units. Guaranteed to not lose precision. The is only returned if the 'includeStakingBalances' query parameter is set to 'true'.
40684
+
inboundBalance:
40685
+
type: string
40686
+
description: Inbound balance in millisatoshis (remote balance)
40687
+
inboundPendingBalance:
40688
+
type: string
40689
+
description: Pending inbound balance in millisatoshis (pending open remote balance)
40690
+
inboundUnsettledBalance:
40691
+
type: string
40692
+
description: Unsettled inbound balance in millisatoshis (unsettled remote balance)
40693
+
outboundBalance:
40694
+
type: string
40695
+
description: Outbound balance in millisatoshis (local balance)
40696
+
outboundPendingBalance:
40697
+
type: string
40698
+
description: Pending outbound balance in millisatoshis (pending open local balance)
40699
+
outboundUnsettledBalance:
40700
+
type: string
40701
+
description: Unsettled outbound balance in millisatoshis (unsettled local balance)
0 commit comments