Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 39 additions & 6 deletions api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20313,15 +20313,15 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/ShareWalletResponse'
/api/v2/{coin}/walletshare/{walletId}/acceptshare:
/api/v2/{coin}/walletshare/{walletShareId}/acceptshare:
post:
tags:
- Express
summary: Accept wallet share
operationId: express.wallet.acceptshare
parameters:
- $ref: '#/components/parameters/pathCoin'
- $ref: '#/components/parameters/pathWalletId'
- $ref: '#/components/parameters/pathWalletShareId'
description: Accept a wallet share, adding the wallet to the user's list
requestBody:
content:
Expand Down Expand Up @@ -36233,6 +36233,12 @@ components:
required: true
schema:
$ref: '#/components/schemas/WalletId'
pathWalletShareId:
name: walletShareId
in: path
required: true
schema:
$ref: '#/components/schemas/Id'
pathWebhookId:
name: webhookId
required: true
Expand Down Expand Up @@ -44490,12 +44496,24 @@ components:
type: string
description: Token name, defined in the BitGoJS Statics package.
ExpressSendCoinsResponse:
anyOf:
- $ref: '#/components/schemas/ExpressSendCoinsResponseMultisig'
- $ref: '#/components/schemas/ExpressSendCoinsResponseMultisigWithPendingApproval'
- $ref: '#/components/schemas/ExpressSendCoinsResponseTxRequest'
- $ref: '#/components/schemas/ExpressSendCoinsResponseTxRequestWithPendingApproval'
ExpressSendCoinsResponseMultisig:
description: Multisig wallet send coins response when no pending approval is required.
allOf:
- $ref: '#/components/schemas/ExpressSendCoinsResponseTransfer'
ExpressSendCoinsResponseMultisigWithPendingApproval:
description: Multisig wallet send coins response when pending approval is required.
allOf:
- $ref: '#/components/schemas/PendingApproval1'
ExpressSendCoinsResponseTransfer:
type: object
properties:
transfer:
allOf:
- $ref: '#/components/schemas/Transfer'
description: New transfer
$ref: '#/components/schemas/Transfer'
txid:
type: string
description: Unique transaction identifier
Expand All @@ -44511,6 +44529,22 @@ components:
- signed
- signed (suppressed)
- pendingApproval
ExpressSendCoinsResponseTxRequest:
description: Wallet send coins response when no pending approval is required for MPC wallets and lightning wallets.
allOf:
- type: object
properties:
txRequest:
$ref: '#/components/schemas/TransactionRequestFull1'
- $ref: '#/components/schemas/ExpressSendCoinsResponseTransfer'
ExpressSendCoinsResponseTxRequestWithPendingApproval:
description: Wallet send coins response when pending approval is required for MPC wallets and lightning wallets.
type: object
properties:
txRequest:
$ref: '#/components/schemas/TransactionRequestFull1'
pendingApproval:
$ref: '#/components/schemas/PendingApproval1'
ExpressSendConsolidationResponse:
type: object
properties:
Expand Down Expand Up @@ -66716,7 +66750,6 @@ x-tagGroups:
- Address
- Approval Requests
- Audit log
- Bank account
- Counterparties
- Client Activation
- Client Allocations & Deallocations
Expand Down