Update multisig account

It updates a Kaia account to a multi-sig account. Balances in the account are required to pay the transaction fee when executing the account update transaction.

Request
Security:
path Parameters
address
required
string

Kaia account address

header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Request Body schema: application/json
threshold
required
integer <int64>

Threshold for validating total weighed values.

required
Array of objects (MultisigKey)
Responses
200

The request is successful.

400

The request is not valid.

put/v2/account/{address}/multisig
Request samples
application/json
{
  • "threshold": 4,
  • "weightedKeys": [
    ]
}
Response samples
application/json
{
  • "address": "0xa809284C83b901eD106Aba4Ccda14628Af128e14",
  • "krn": "krn:1001:wallet:68ec0e4b-0f61-4e6f-ae35-be865ab23187:account-pool:default",
  • "multiSigKeys": [
    ],
  • "threshold": 4,
  • "transactionHash": "0xcd6c6a785bccbbb821e7fb0b3e1c15c0d35d6017706f843dd9cf7f3f4d3a452a",
  • "updatedAt": 1599187391
}