v2018-01-02: Transaction Gross and Net
almost 8 years ago by Anush Ramani
This release renames certain fields in the transaction object to be in line with standard accounting practices.
amountis renamed togross(total value of the transaction)earningis renamed tonet(value of the transaction after processing/partner fees)
The following endpoints are affected by this change:
GET/api/transactionsGET/api/transactions/{id}
{
"items": {
"gross": 19.99,
"net" : 19.11
...
}
...
}
{
"items": {
"amount": 19.99,
"earning" : 19.11
...
}
...
}