/files
This call copies the specified file to another folder within the same project. Files retain their metadata when copied, but may be assigned new names in their target project.
https://cavatica-api.sbgenomics.com/v2/files/{file_id}/actions/copyRequest
Example request
POST /v2/files/{file_id}/actions/copy HTTP/1.1
Host: cavatica-api.sbgenomics.com
X-SBG-Auth-Token: 3259c50e1ac5426ea8f1273259740f74
Content-Type: application/jsoncurl --data '{"project": "RFranklin/my-project", "name": "new-file", "parent: "567890abc9b0307bc0414164"}' -s -H "X-SBG-Auth-Token: 7942f56901534434a054dafc3813bc96" -H "content-type: application/json" -X POST "https://cavatica-api.sbgenomics.com/v2/files/567890abc9b0307bc0414164/actions/copy"Header Fields
Name | Description |
|---|---|
| Your CAVATICA authentication token. |
|
|
Request body
In the request body, you should enter the following list of key-value pairs:
Name | Data type | Description |
|---|---|---|
| String | Specifies the target folder by using its ID. |
| String | Specifies a new name for a file in case you want to rename it. |
Example request body
{
"parent": "567890abc9b0307bc0414164",
"name": "1000G_omni2.5.hg38.vcf"
}Response
See a list of CAVATICA-specific response codes that may be contained in the body of the response.
Example response body
{
"href": "https://cavatica-api.sbgenomics.com/v2/files/567890abc9b0307bc0414164",
"id": "567890abc9b0307bc0414164",
"name": "1000G_omni2.5.hg38.vcf",
"size": 208485995,
"project": "rfranklin/my-project-3",
"parent": "57ff702e1c94d72f08ba34e8",
"type": "FILE",
"created_on": "2016-10-13T11:36:39Z",
"modified_on": "2016-10-13T11:36:39Z",
"storage": {
"type": "PLATFORM"
},
"origin": {},
"tags": [
"WGS",
"hg38"
],
"metadata": {}
}