Search data pipeline workflows
Note:
This API is deprecated. Please use https://developers.tetrascience.com/reference/pipeline-search-workflows instead.
Workflow Queries
- Returned workflows are ordered by Creation Date, not Last Updated Date.
- Any retried workflows are also included in a workflow queries.
Some examples of API calls:
-
Retrieve all the workflows for given pipelineId (first page, page size 10):
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=all&pipelineId=a592d372-3bdf-417e-b650-4e3c02cec688
-
Retrieve failed workflows for given pipelineId (first page, page size 10)
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=failed&pipelineId=a592d372-3bdf-417e-b650-4e3c02cec688
-
Retrieve completed workflows for given pipelineId (first page, page size 10)
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=completed&pipelineId=a592d372-3bdf-417e-b650-4e3c02cec688
-
Retrieve all the workflows from all the pipelines (first page, page size 10)
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=all
-
Retrieve all failed workflows from all the pipelines (first page, page size 10)
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=failed
-
Retrieve all failed workflows from all the pipelines (second page, page size 10)
https://api.tetrascience.com/v1/workflow/workflows?page=2&limit=10&filter=failed
-
Retrieve all completed workflows from all the pipelines (first page, page size 10)
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=completed
-
Retrieve all completed workflows from all the pipelines (first page, page size 10) created after October 17th, 2018:
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=completed&startTime=2018-10-17
-
Retrieve all completed workflows from all the pipelines (first page, page size 10) created before October 17th, 2018:
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=completed&endTime=2018-10-17
-
Retrieve all completed workflows from all the pipelines (first page, page size 10) created between 1st and 17th October, 2018:
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=completed&startTime=2018-10-01&endTime=2018-10-17
-
Retrieve all completed workflows from all the pipelines (first page, page size 10) created before current time represented by Unix time at time of writing (2018-10-17...):
https://api.tetrascience.com/v1/workflow/workflows?page=1&limit=10&filter=completed&endTime=1539732087000