Pagination
How to paginate through the records.
Parameters
Response Metadata
Example
GET /api/inventory?page=2&size=50{
"data": [
{ "inventoryId": "abc123", "name": "MacBook Pro", "status": "Available" },
{ "inventoryId": "def456", "name": "Dell XPS", "status": "Deployed" }
],
"pagination": {
"totalRecords": 200,
"totalPages": 4,
"currentPage": 2,
"pageSize": 50
}
}Fetching all records
Last updated