Storiq One API
v1.0
API for Storiq One
|
To delete a job, use DELETE method
path : /storiqone-backend/api/v1/job/
id | : job id |
To get job information, use GET method
path : /storiqone-backend/api/v1/job/
id | : job id |
Job information is returned
To get jobs ids list, use GET method : without reference to specific id or ids
path : /storiqone-backend/api/v1/job/
Optional parameters
Name | Type | Description | Constraint |
---|---|---|---|
order_by | enum | order by column | single value from : 'id', 'name', 'nextstart', 'status', 'update' |
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 |
Jobs ids list is returned
To update a job, use PUT method
path : /storiqone-backend/api/v1/job/
job | : JSON encoded object
|