/apps/{owner}
This call returns a list of all apps accessible to the specified user.
The apps returned are those in projects that are owned by the user who is specified by the owner
parameter. To make the call successfully, you must also have read permission on these projects.
https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/{owner}
Request
Example request
GET /v2/apps/crick 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/Crick"
Header Fields
Name | Description |
---|---|
X-SBG-Auth-Token required | Your authentication token. |
Path parameters
Name | Description |
---|---|
owner | The user 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/crick",
"items": [
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/crick/senadtest/test",
"id": "crick/senadtest/test",
"name": "test"
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/apps/crick/cwl-abc/cat",
"id": "crick/cwl-abc/cat",
"name": "cat"
}
]
}