Storiq One API
v1.0
API for Storiq One
|
use GET method
path : /storiqone-backend/api/v1/report/
id | : report id |
Report information are returned
To get report by its id, use GET method
path : /storiqone-backend/api/v1/report/
id | : report id |
Archive information is returned { "message":"Query successful","report": { ... } }
To get reports ids list, use GET method : without reference to specific id or ids
path : /storiqone-backend/api/v1/report/
Optional parameters
Name | Type | Description | Constraint |
---|---|---|---|
order_by | enum | order by column | value in : 'id', 'uuid', 'name' |
order_asc | boolean | TRUE will perform an ascending order and FALSE will perform an descending order. order_asc is ignored if order_by is missing. | |
limit | integer | specifies the maximum number of rows to return. | limit > 0 |
offset | integer | specifies the number of rows to skip before starting to return rows. | offset >= 0 |
Archives ids list is returned { { "message":"Query successful","reports":[2],"total_rows":1 } }