/tasks
This call returns a list of tasks that you can access.
https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2.tasks
Request
Example request
GET /v2/tasks HTTP/1.1
Host: api.sb.biodatacatalyst.nhlbi.nih.gov
X-SBG-Auth-Token: 3259c50e1ac5426ea8f1273259740f74
curl -s -H "X-SBG-Auth-Token: 6282d5e2121d43e7900e9d52b15845e7" -H "content-type: application/json" -X GET "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks"
Header Fields
Name | Description |
---|---|
X-SBG-Auth-Token required | Your authentication token. |
Query parameters
Name | Data type | Description |
---|---|---|
fields | string | Selector specifying a subset of fields to include in the response. |
status | string | You can filter the returned tasks by their status. Set the value of status to one of the following values:"QUEUED" "DRAFT" "RUNNING" "COMPLETED" "ABORTED" "FAILED" |
parent | string | Enter the task ID of the parent task to return all child tasks from that parent. A parent task is a task that specifies criteria by which to batch its inputs into a series of further sub-tasks, called child tasks. See the documentation on batching tasks for more details details on how to run tasks in batches. |
project | string | Enter the project ID of the project you wish to list the tasks from. |
created_from | string | Enter the starting date for querying tasks created on the specified date and onwards (see below for more information). |
created_to | string | Enter the ending date for querying tasks created until the specified date. You can use it in combination with the created_from to specify a time interval. |
started_from | string | Enter the starting date for querying tasks started on the specified date and onwards (see below for more information). |
started_to | string | Enter the starting date for querying tasks started until the specified date (see below for more information). |
ended_from | string | Enter the starting date for querying tasks that ended on a specified date (see below for more information). |
ended_to | string | Enter the ending date for querying tasks that ended until a specified date. |
Using the timestamps
The parameters created_from
, created_to
, started_from
, started_to
, ended_from
and ended_to
are timestamp parameters.
They can be used to query tasks that were created, started, or ended during a specified time interval. All query parameters can be combined.
For example, querying https://cgc-api.sbgenomics.com/v2/tasks?fields=_all&started_from=2016-12-26T12:46:25&ended_to=2016-12-28 will return all tasks which ran between December 26, 2016 at 12:46:25 and December 28.
Furthermore, the timestamp query parameters can be combined with other query parameters. For example, querying https://cgc-api.sbgenomics.com/v2/tasks?fields=_all&created_from=2016-12-26T12:46:25&status=FAILED will return all tasks which were created from December 26 onwards and have failed.
Date format
All dates should be entered using the UTC format (ISO 8601). Allowed formats are:
- T<HH:mm:ss>+/-<HH:mm> (use this format to specify the UTC offset, see below)
- yyyy-MM-ddTHH:mm:ss
- yyyy-MM-dd (when this format is used, the implicit time is 00:00:00)
Parameter | Description |
---|---|
yyyy | 4 digits for the year (e.g. 2017) |
T | special character followed by hours and minutes |
ss | 2 digits for seconds (e.g. "25) |
MM | 2 digits for a month (e.g. "02" for February) |
mm | 2 digits for minutes (e.g. "45") |
HH | 2 digits for an hour (e.g. "23") |
dd | 2 digits for a day (e.g. "01") |
- | UTC - hh:mm |
+ | UTC + hh:mm |
UTC offset (HH:mm)
The hours and minutes should be entered the same way as for the date but are used to specify the time offset (e.g. -05:00 = UTC-5). This means you can use your local time to query but have to specify the UTC offset.
Examples:
- 2016-04-01T14:25:50+01:00 - Fri Apr 01 13:25:50 UTC 2016
- 2016-04-01T14:25:50 - Fri Apr 01 14:25:50 UTC 2016
- 2016-04-01 - Fri Apr 01 00:00:00 UTC 2016
Response
See a list of response codes that may be contained in the body of the response.
Example response body
{
"items": [
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks/48f79ccf-12b3-45b6-789c-b1e8d88dabcd",
"id": "48f79ccf-12b3-45b6-789c-b1e8d88dabcd",
"name": "bwa run - 05-11-2015 10:30:59",
"description": "",
"status": "Completed"
}
]
}