List files (secondary method)

projects/{project_owner}/{project_name}/files

This call lists the files in the specified project. It is an alias for the call GET /files and redirects to that path.

❗️

Alias call

Note that since this is an alias for another call, the call cannot be made straightforwardly from all applications. In particular, to send the call using cURL, use the cURL option -L to redirect the path of this call to `https://cgc-api.sbgenomics.com/v2/files?{project_owner}/{project}.

Alternatively, to list all files, you can simply use the call GET /files.

https://cgc-api.sbgenomics.com/v2/projects/{project_owner}/{project}/files

Request

Example request

👍

Referring to your project

Note that project_owner is always case-sensitive, and that project is not the project's name but its ID, or short name. For full details of identifying objects using the API, please see the API overview.

GET /v2/projects/rfranklin/my-project/files HTTP/1.1
Host: cgc-api.sbgenomics.com
X-SBG-Auth-Token: 3210a98c1db9318fa9d9273156740f74
curl -L "https://cgc-api.sbgenomics.com/v2/files?RFranklin/my-project"  -s -H "X-SBG-Auth-Token: 3210a98c1db9318fa9d9273156740f74" -H "content-type: application/json" -X GET "https://cgc-api.sbgenomics.com/v2/projects/RFranklin/my-project/files"

Header Fields

NameDescription
X-SBG-Auth-Token
required
Your CGC authentication token.

Path parameters

NameDescription
projectThe short name of the project you are querying.
project_ownerThe owner of the project you are querying.

Query parameters

NameData typeDescription
fieldsstringSelector specifying a subset of fields to include in the response.

Response

See a list of CGC-specific response codes that may be contained in the body of the response.

Example response body

{
  "href": "https://cgc-api.sbgenomics.com/v2/files/?offset=0&limit=25&project=RFranklin/my-project",
  "items": [
    {
      "href": "https://cgc-api.sbgenomics.com/v2/files/568cf5dce3b0307bc0462060",
      "id": "568cf5dce3b0307bc0462060",
      "name": "my_reference.vcf",
      "project": "RFranklin/my-project"
    },
    {
      "href": "https://cgc-api.sbgenomics.com/v2/files/566aad1de4b0c560b469ea90",
      "id": "566aad1de4b0c560b469ea90",
      "name": "_1_unsorted.bam",
      "project": "RFranklin/my-project"
    },
    {
      "href": "https://cgc-api.sbgenomics.com/v2/files/568cf5f4e4b0307b30462062",
      "id": "568cf5f4e4b0307b30462062",
      "name": "unsorted.bam",
      "project": "RFranklin/my-project"
    }
  ],
  "links": []
}
Language