curl --request POST \
--url https://prv.gateway.indexer.biya.io/injective_spot_exchange_rpc.InjectiveSpotExchangeRPC/SubaccountOrdersList \
--header 'Content-Type: application/json' \
--data '
{
"subaccount_id": "<string>",
"market_id": "<string>",
"skip": 123,
"limit": 123
}
'List orders posted from a subaccount
curl --request POST \
--url https://prv.gateway.indexer.biya.io/injective_spot_exchange_rpc.InjectiveSpotExchangeRPC/SubaccountOrdersList \
--header 'Content-Type: application/json' \
--data '
{
"subaccount_id": "<string>",
"market_id": "<string>",
"skip": 123,
"limit": 123
}
'{
"orders": [
{
"order_hash": "string",
"order_side": "string",
"market_id": "string",
"subaccount_id": "string",
"price": "string",
"quantity": "string",
"unfilled_quantity": "string",
"trigger_price": "string",
"fee_recipient": "string",
"state": "string",
"created_at": "number",
"updated_at": "number",
"tx_hash": "string",
"cid": "string"
}
],
"paging": {
"total": "number",
"from": "number",
"to": "number",
"count_by_subaccount": "number",
"next": ["string"]
}
}