getAccountTransactions

Get the transactions associated with an account in reverse block timestamp order

Request:

  • requestType is getAccountTransactions

  • account is the account ID

  • timestamp is the earliest block (in seconds since the genesis block) to retrieve (optional)

  • type is the type of transactions to retrieve (optional)

  • subtype is the subtype of transactions to retrieve (optional)

  • firstIndex is a zero-based index to the first transaction to retrieve (optional)

  • lastIndex is a zero-based index to the last transaction to retrieve (optional)

  • numberOfConfirmations is the required number of confirmations per transaction (optional)

Response:

  • transactions (A) is an array of transactions (refer to Get Transaction for details)

  • requestProcessingTime (N) is the API request processing time (in millisec)

{
     "requestProcessingTime": 0,
     "transactions": [
          {
               "senderPublicKey": "cf1f4629356d0205feca9538d75dbefc23ed8d901540d9b858c1aec8ac312650",
               "signature": "088d4c4e5cece2d737d6afa5e7237bb21b3455d8bbe251cd138e96e6ee248a0c180bf7aada78cd84ea9589273c20afb817a6b0b8ab0779b639af5b1665db4dd5",
               "feeNQT": "100000000",
               "type": 2,
               "confirmations": 56231,
               "fullHash": "cfee004c4318bd488256a73accdab046c659a7384654d3653ba7faad842fc878",
               "version": 1,
               "ecBlockId": "17788097578235755645",
               "signatureHash": "42d58592b6e5b48d36c52ee80a2849322ed44f64ac7ec8c38fe39544e01436a8",
               "attachment": {
                    "version.AskOrderPlacement": 1,
                    "quantityQNT": "1",
                    "priceNQT": "100000000",
                    "asset": "13823139693065868196"
               },
               "senderRS": "BEAM-7X92-29W5-7LQA-4V8CH",
               "subtype": 2,
               "amountNQT": "0",
               "sender": "2857774765072119008",
               "ecBlockHeight": 212660,
               "block": "11921145017945731781",
               "blockTimestamp": 239876536,
               "deadline": 1440,
               "transaction": "5241372218646130383",
               "timestamp": 239876528,
               "height": 212681
          },

Last updated