Get scheduled transaction

post

Retrieves the scheduled transaction

Body
lower_boundstringOptional

Date/time string in the format YYYY-MM-DDTHH:MM:SS.sss

Pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{3}$
limitintegerOptional

The maximum number of transactions to return

jsonbooleanOptional

true/false whether the packed transaction is converted to json

Responses
200
OK
application/json
post
POST /v1/chain/get_scheduled_transaction HTTP/1.1
Host: eos.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 44

{
  "lower_bound": "text",
  "limit": 1,
  "json": true
}
200

OK

{
  "transactions": [
    {
      "expiration": "text",
      "ref_block_num": 1,
      "ref_block_prefix": 1,
      "max_net_usage_words": "text",
      "max_cpu_usage_ms": "text",
      "delay_sec": 1,
      "context_free_actions": [
        {
          "account": "text",
          "name": "text",
          "authorization": [
            {
              "actor": "text",
              "permission": "text"
            }
          ],
          "data": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "hex_data": "text"
        }
      ],
      "actions": [
        {
          "account": "text",
          "name": "text",
          "authorization": [
            {
              "actor": "text",
              "permission": "text"
            }
          ],
          "data": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "hex_data": "text"
        }
      ],
      "transaction_extensions": [
        [
          1
        ]
      ]
    }
  ]
}