pagination object is included only for envelope consistency with other collection endpoints. Use the optional is_active query parameter to filter by active state.curl --location --globoff 'https://.daftra.com/api2/taxes.json?is_active=undefined' \
--header 'Accept: application/json' \
--header 'apikey: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'{
"result": "successful",
"code": 200,
"data": [
{
"Tax": {
"id": 1,
"name": "VAT",
"value": 15,
"description": "Value Added Tax",
"included": 0,
"is_active": 1,
"site_id": 42,
"created": "2018-05-10 00:42:00",
"modified": "2018-05-12 13:05:06"
}
}
],
"pagination": {
"prev": null,
"next": null,
"page": 1,
"page_count": 1,
"total_results": 1
}
}