Translations:Asset Exchange/46/en

From ArdorDocs
Revision as of 18:34, 23 June 2020 by FuzzyBot (talk | contribs) (Importing a new version from external source)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Get All Open Orders Example

<syntaxhighlight lang="bash"> http://localhost:27876/nxt?

 requestType=getAllOpenBidOrders&
 chain=2&
 firstIndex=123&
 lastIndex=123

</syntaxhighlight>

<syntaxhighlight lang="json"> {

"requestProcessingTime": 5631,
"openOrders": [
 {
  "quantityQNT": "1000000",
  "priceNQTPerShare": "101",
  "accountRS": "ARDOR-L6FM-89WK-VK8P-FCRBB",
  "asset": "17554243582654188572",
  "type": "bid",
  "account": "15323192282528158131",
  "order": "12743274869785967304",
  "height": 285577
 }
]

} </syntaxhighlight>