We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dac2925 + 7d85925 commit dd6759fCopy full SHA for dd6759f
modules/sdk-core/src/bitgo/wallet/wallets.ts
@@ -650,7 +650,12 @@ export class Wallets implements IWallets {
650
async bulkUpdateWalletShareRequest(
651
params: BulkUpdateWalletShareOptionsRequest[]
652
): Promise<BulkUpdateWalletShareResponse> {
653
- return await this.bitgo.put(this.bitgo.url('/walletshares/update', 2)).send(params).result();
+ return await this.bitgo
654
+ .put(this.bitgo.url('/walletshares/update', 2))
655
+ .send({
656
+ shares: params,
657
+ })
658
+ .result();
659
}
660
661
/**
0 commit comments