Get List of Transactions by Timestamp via API
Aaron Cross
Much like
executions/
resource, it's possible to get the list of transactions for an account by calling the transactions/
resource on the REST API. Unfortunately it's not possible to filter the transactions; the only params seem to be
currency
, page
and limit
. Can we please have the ability to filter based on timestamp, the same way we do with Executions? - https://developers.quoine.com/v2#get-executions-by-timestamp
I want to be able to make a call like this - https://api.quoine.com/transactions?currency=USD×tamp=1548121950 to return all the transactions after this timestamp.
Hopefully this is a simple one.
Aaron Cross
is it possible to include the Loan ID and the Execution ID in the expanded
with_details
bit? `
{
"id": xxxxxxxxxxx,
"created_at": 1548112392,
"transaction_type": "loan_fee",
"notes": "fee for interest_payment transaction xxxxxxxxxx",
"gross_amount": "0.00347",
"net_amount": "0.00347",
"fee": "0.0",
"fx_rate": null,
"from_fiat_account_id": xxxxxx,
"to_fiat_account_id": null,
"from_role": null,
"to_role": null,
"business_date": null,
"loan": {
"id":
put_loan_id_here
"quantity": "32.99854",
"rate": "0.00021",
"currency": "USD"
}
}
`