Statements and Adjustments
View adjustments
FROM REPORTING.JSON
Returns all adjustments within the given date range for all merchant IDs associated with the Nexio account used to authenticate <i role='img' aria-hidden='true' class='sl-icon far fa-external-link-alt fa-xs'></i>. You may also request or filter on fields of the query parameters, as in the following example:
<code>/report/v3/adjustments?kount.&plugin.&customer.&processor.&gateway.</code>
See the query parameters <i role='img' aria-hidden='true' class='sl-icon far fa-external-link-alt fa-xs'></i> section in Developer Tools for a full tutorial.
get/report/v3/adjustments
Query parameters
limitinteger
Example:12
The number of adjustments to return
offsetinteger
Example:10
The offset. Used to view adjustments further along the list
startDatestring
Example:2019-02-13
The start date. Format: YYYY-MM-DD
endDatestring
Example:2019-02-19
The end date. Format: YYYY-MM-DD
Response
Success
Example response
{
"offset": 10,
"limit": 1,
"rows": [
{
"merchantId": "100039",
"transactionDate": "2019-02-07",
"assessmentCode": "01*",
"lockBoxBatch": "020819GD004",
"salesCount": 5,
"salesAmount": 1356.54,
"returnsCount": 1,
"returnsAmount": 54.87,
"netAmount": 1356.54,
"term": "GT6P",
"reportDate": "2019-02-07",
"createdAt": "2019-02-08T09:19:04.000Z",
"bankSource": "1637_000"
}
]
}