TON DocsTON Docs
APIsTON CenterMultisig

Get Multisig Orders

GET
/api/v3/multisig/orders

Get multisig orders by specified filters

Query Parameters

address?array<string>

Order address in any form. Max: 1024.

multisig_address?array<string>

Address of corresponding multisig. Max: 1024.

parse_actions?boolean

Parser order actions

limit?integer

Limit number of queried rows. Use with offset to batch read.

offset?integer

Skip first N rows. Use with limit to batch read.

sort?string

Sort orders by last_transaction_lt.

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v3/multisig/orders"
{
  "address_book": {
    "property1": {
      "domain": "string",
      "interfaces": [
        "string"
      ],
      "user_friendly": "string"
    },
    "property2": {
      "domain": "string",
      "interfaces": [
        "string"
      ],
      "user_friendly": "string"
    }
  },
  "orders": [
    {
      "actions": [
        {
          "body_raw": [
            0
          ],
          "destination": "string",
          "error": "string",
          "parsed": true,
          "parsed_body": null,
          "parsed_body_type": "string",
          "send_mode": 0,
          "value": "string"
        }
      ],
      "address": "string",
      "approvals_mask": "string",
      "approvals_num": 0,
      "code_hash": "string",
      "data_hash": "string",
      "expiration_date": 0,
      "last_transaction_lt": "0",
      "multisig_address": "string",
      "order_boc": "string",
      "order_seqno": "string",
      "sent_for_execution": true,
      "signers": [
        "string"
      ],
      "threshold": 0
    }
  ]
}
{
  "code": 0,
  "error": "string"
}