- API Reference
- Access Points
- API Calls
- Batches
- Bins
- Carriers
- Clients
- Cost Centers
- Images (Supplements)
- Kits
- Kit Lines
- Locations
- Location Contents
- Materials
- Material Codes
- Material Properties
- Orders
- Order Lines
- Reports
- Report Rows
- Settings
- Shelves
- Snapshots
- Stations
- Storage Rules
- Storage Units
- Transactions
- Users
- Warehouses
- Work Order Lines
- Zones
Report Rows
A report is a collection of data built via the ItemPath application. Use the API to get data from specific rows within a report using its ID.
Attributes
Endpoints
List Report Rows
get /api/reports/[id]/report_rowsCall a report by its ID and return an array of the report's row data.
Arguments
-
limit
integer
A limit on the number of objects to be returned. Limit can range between 1 and 1000.
Default value: 250
-
page
integer
Page-numbering is based on the value of the "limit" argument. If limit=20, then page=0 will display the hits from 1 to 20. (Page numbers are zero-based.) Using page without a limit returns all items.
-
countOnly
boolean
When "true", will only return a count of the amount of items in the query.
Default value: false
Request with curl
curl "http://[Your IP]
/api/reports/[id]/report_rows" \
-X
get
\
-H "Content-Type: application/json" \
-H "Authorization: Bearer [Your JWT Access Token]"
Example Response
{ "report_rows": [ { "730": "Sun, 21 Mar 2021 16:48:30 GMT", "731": "C-210321", "732": 6, "733": "1113", "734": 11.0, "735": -2.0, "736": 232.0, "737": 0, "738": "Admin" }, { "730": "Mon, 24 Jan 2022 15:33:07 GMT", "731": "Count1000004", "732": 6, "733": "1103", "734": 100.0, "735": 0.0, "736": 200.0, "737": 0, "738": "Admin" }, { "730": "Fri, 03 Jul 2020 20:47:44 GMT", "731": "COUNT-VLM-01-001A", "732": 6, "733": "1101", "734": 50.0, "735": 48.0, "736": null, "737": 0, "738": "Admin" } ] }