Release v1.1.8
over 1 year ago by Steven
Introduces pagination on all history endpoints. In the previous version, history endpoints returns an array of history objects. In the current version, the response has been updated to include a count
field along with the array of history objects. The history object fields for each endpoints remain the same.
REST API Changelog
GET /order-history
- response is now an object with 2 fields:
count
andorder_history
order_history
contains the order history array- added
offset
field for pagination
GET /trade-history
- response is now an object with 2 fields:
count
and trade_history` trade_history
contains the trade history array- added
limit
andoffset
fields for pagination
GET /transaction-history
- response is now an object with 2 fields:
count
andtransaction_history
transaction_history
contains the transaction history array- added
limit
andoffset
fields for pagination
GET /referral-rewards-history
- response is now an object with 2 fields:
count
andreferral_rewards_history
referral_rewards_history
contains the referral rewards history array- added
limit
andoffset
fields for pagination
GET /referral-history
- response is now an object with 2 fields:
count
andreferral_history
referral_history
contains the referral history array- added
limit
andoffset
fields for pagination