v1.20
almost 2 years ago by Khizar Naeem
Bug fixed and improvements.
Improved
Invoice adjustment pagination
We have added offset-based pagination to the Invoice adjustment GET endpoint. You can make use of theoffset
and limit
properties to paginate requests.
Sample Request
curl --location 'https://api.letsdeel.com/rest/v1/invoice-adjustments?limit=10&offset=2' \
--header 'Authorization: Bearer {token}'
Sample Response
{
"data": [... ],
"page": {
"total_rows": 132,
"items_per_page": 10,
"offset": 2
}
}
Fixed
Invoice adjustment offset limit
The invoice adjustment offset was limited to 99. This bug has been fixed.