Retrieve pending transactions

Retrieve pending transactions that had been send from a multisig account.

Size

  • The query parameter size is optional. (Min = 1, Max = 1000, Default = 100)
  • Returns an error when given a negative number
  • Uses default value (size=100) when size=0
  • Uses the maximum value (size=1000) when given a value higher than the maximum value.
Request
Security:
path Parameters
address
required
string

Account address or user's account address with multisig keys

query Parameters
size
integer <int64> <= 1000
Default: 100

Maximum size of the accounts to be queried

Example: size=100
cursor
string

Information on the last cursor

to-timestamp
integer <int64>

Limit of the time range to be queried (Timestamp in seconds)

from-timestamp
integer <int64>

Starting point of the time range to be queried (Timestamp in seconds)

header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Responses
200

The request is successful.

400

The request is not valid.

get/v2/multisig/account/{address}/tx
Request samples
curl -i -X GET \
  -u <username>:<password> \
  'https://wallet-api.klaytnapi.com/v2/multisig/account/{address}/tx?size=100&cursor=string&to-timestamp=0&from-timestamp=0' \
  -H 'x-chain-id: string'
Response samples
application/json
{
  • "cursor": "",
  • "items": [
    ]
}