Skip to main content
PUT
/
wallets
/
{walletId}
/
signing-quorum
Override a wallet's signing quorum threshold
curl --request PUT \
  --url https://api.conduit.financial/v2/wallets/{walletId}/signing-quorum \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "threshold": 2
}'
{
  "verificationUrl": "https://verify.conduit.financial/vrf_2xKjF9mQb7vN4hL1pR3w8t"
}

Authorizations

x-api-key
string
header
required

Path Parameters

walletId
string
required

Body

application/json
threshold
integer
required

Number of eligible signers required to approve a transaction. Must not exceed the number of active signers.

Required range: 1 <= x <= 100
Example:

2

Response

status
enum<string>
required

active when the change applied immediately; pending_approval when signer approval is required.

Available options:
active,
pending_approval
verificationUrl
string | null
required

URL for signers to approve the change when PENDING_APPROVAL, otherwise null.

Example:

"https://verify.conduit.financial/vrf_2xKjF9mQb7vN4hL1pR3w8t"