/apps/{owner}/{project_id}
This call returns a list of all apps in the project with the specified project owner and ID.
https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/{owner}/{project_id}
Request
Example request
GET /v2/apps/RFranklin/my-project 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/apps/RFranklin/my-project"
Header Fields
Name | Description |
---|---|
X-SBG-Auth-Token required | Your authentication token. |
Path parameters
Name | Description |
---|---|
id | The ID of the project whose apps you want to get. |
owner | The owner of the project whose apps you want to get. |
Query parameters
Name | Data type | Description |
---|---|---|
fields | string | Selector specifying a subset of fields to include in the response. |
Response
See a list of response codes that may be contained in the body of the response.
Example response body
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/RFranklin/my-project",
"items": [
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/RFranklin/my-project/workflow",
"id": "RFranklin/my-project/workflow",
"name": "workflow"
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/RFranklin/my-project/fusion-transcript-detection-chimerascan",
"id": "RFranklin/my-project/fusion-transcript-detection-chimerascan",
"name": "fusion-transcript-detection-chimerascan"
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/RFranklin/my-project/somaticsniper-filters",
"id": "RFranklin/my-project/somaticsniper-filters",
"name": "somaticsniper-filters"
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/RFranklin/my-project/delly2-workflow",
"id": "RFranklin/my-project/delly2-workflow",
"name": "delly2-workflow"
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/RFranklin/my-project/my-new-app",
"id": "RFranklin/my-project/my-new-app",
"name": "my-new-app"
}
]
}