Retrieve pending transactions that had been send from a multisig account.
size
is optional. (Min = 1, Max = 1000, Default = 100)size=100
) when size=0
size=1000
) when given a value higher than the maximum value.The request is successful.
The request is not valid.
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'
{- "cursor": "",
- "items": [
- {
- "address": "0x68311224a5d693E93B64E5B9b9935bAFa0a1B916",
- "chainId": 1001,
- "createdAt": 1616131131,
- "multiSigKeys": [
- {
- "address": "0x9cA7C95b1E032480485c7c67A671ef8c8b1376E7",
- "weight": 3
}, - {
- "address": "0x19047FB2FbE07FdA0672f454760e94703337c9a1",
- "weight": 1
}
], - "status": 2,
- "threshold": 4,
- "transactionId": "0xdaa6296ca623514bca7f109bfe1193203f4cc3922ecc6e250c33adcc3e38ab42",
- "txData": {
- "from": "0x68311224a5d693e93b64e5b9b9935bafa0a1b916",
- "gas": 1000000,
- "gasPrice": "0x5d21dba00",
- "input": "0x3078313233",
- "nonce": 1,
- "to": "0x60d0902c428d0e197f97a756011fd4893c1e57b0",
- "typeInt": 16,
- "value": "0x121111111111111111"
}, - "type": "TX",
- "updatedAt": 1616131131
}
]
}