@@ -20313,15 +20313,15 @@ paths:
20313
20313
application/json:
20314
20314
schema:
20315
20315
$ref: '#/components/schemas/ShareWalletResponse'
20316
- /api/v2/{coin}/walletshare/{walletId }/acceptshare:
20316
+ /api/v2/{coin}/walletshare/{walletShareId }/acceptshare:
20317
20317
post:
20318
20318
tags:
20319
20319
- Express
20320
20320
summary: Accept wallet share
20321
20321
operationId: express.wallet.acceptshare
20322
20322
parameters:
20323
20323
- $ref: '#/components/parameters/pathCoin'
20324
- - $ref: '#/components/parameters/pathWalletId '
20324
+ - $ref: '#/components/parameters/pathWalletShareId '
20325
20325
description: Accept a wallet share, adding the wallet to the user's list
20326
20326
requestBody:
20327
20327
content:
@@ -36233,6 +36233,12 @@ components:
36233
36233
required: true
36234
36234
schema:
36235
36235
$ref: '#/components/schemas/WalletId'
36236
+ pathWalletShareId:
36237
+ name: walletShareId
36238
+ in: path
36239
+ required: true
36240
+ schema:
36241
+ $ref: '#/components/schemas/Id'
36236
36242
pathWebhookId:
36237
36243
name: webhookId
36238
36244
required: true
@@ -44490,12 +44496,24 @@ components:
44490
44496
type: string
44491
44497
description: Token name, defined in the BitGoJS Statics package.
44492
44498
ExpressSendCoinsResponse:
44499
+ anyOf:
44500
+ - $ref: '#/components/schemas/ExpressSendCoinsResponseMultisig'
44501
+ - $ref: '#/components/schemas/ExpressSendCoinsResponseMultisigWithPendingApproval'
44502
+ - $ref: '#/components/schemas/ExpressSendCoinsResponseTxRequest'
44503
+ - $ref: '#/components/schemas/ExpressSendCoinsResponseTxRequestWithPendingApproval'
44504
+ ExpressSendCoinsResponseMultisig:
44505
+ description: Multisig wallet send coins response when no pending approval is required.
44506
+ allOf:
44507
+ - $ref: '#/components/schemas/ExpressSendCoinsResponseTransfer'
44508
+ ExpressSendCoinsResponseMultisigWithPendingApproval:
44509
+ description: Multisig wallet send coins response when pending approval is required.
44510
+ allOf:
44511
+ - $ref: '#/components/schemas/PendingApproval1'
44512
+ ExpressSendCoinsResponseTransfer:
44493
44513
type: object
44494
44514
properties:
44495
44515
transfer:
44496
- allOf:
44497
- - $ref: '#/components/schemas/Transfer'
44498
- description: New transfer
44516
+ $ref: '#/components/schemas/Transfer'
44499
44517
txid:
44500
44518
type: string
44501
44519
description: Unique transaction identifier
@@ -44511,6 +44529,22 @@ components:
44511
44529
- signed
44512
44530
- signed (suppressed)
44513
44531
- pendingApproval
44532
+ ExpressSendCoinsResponseTxRequest:
44533
+ description: Wallet send coins response when no pending approval is required for MPC wallets and lightning wallets.
44534
+ allOf:
44535
+ - type: object
44536
+ properties:
44537
+ txRequest:
44538
+ $ref: '#/components/schemas/TransactionRequestFull1'
44539
+ - $ref: '#/components/schemas/ExpressSendCoinsResponseTransfer'
44540
+ ExpressSendCoinsResponseTxRequestWithPendingApproval:
44541
+ description: Wallet send coins response when pending approval is required for MPC wallets and lightning wallets.
44542
+ type: object
44543
+ properties:
44544
+ txRequest:
44545
+ $ref: '#/components/schemas/TransactionRequestFull1'
44546
+ pendingApproval:
44547
+ $ref: '#/components/schemas/PendingApproval1'
44514
44548
ExpressSendConsolidationResponse:
44515
44549
type: object
44516
44550
properties:
@@ -66716,7 +66750,6 @@ x-tagGroups:
66716
66750
- Address
66717
66751
- Approval Requests
66718
66752
- Audit log
66719
- - Bank account
66720
66753
- Counterparties
66721
66754
- Client Activation
66722
66755
- Client Allocations & Deallocations
0 commit comments