Search Workflows (Deprecated)

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:

  1. 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

  2. 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

  3. 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

  4. 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

  5. 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

  6. 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

  7. 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

  8. 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

  9. 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

  10. 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

  11. 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

Language
Authorization
URL
Click Try It! to start a request and see the response here!