Get details of an export job

This call will return the details of an export job.

When you export a file from a project on the Platform into a volume, you write to your cloud storage bucket on Amazon Web Services. This call obtains the details of that job.

📘

Please note that export from CAVATICA to Google Cloud Storage volumes is currently not supported.

Learn more about using the Volumes API for Amazon S3.

https://cavatica-api.sbgenomics.com/v2/storage/exports/{export_id}

Request

Example request

GET /v2/storage/exports/trand0mgPWZbeXxtADETWtFkrE87JBSd HTTP/1.1
Host: cavatica-api.sbgenomics.com
X-SBG-Auth-Token: 3259c50e1ac5426ea8f1273259740f74
Content-type: application/json
curl -s -H "X-SBG-Auth-Token: 7942f56901534434a054dafc3813bc96" -H "Content-Type: application/json" -X GET "https://cavatica-api.sbgenomics.com/v2/storage/exports/trand0mgPWZbeXxtADETWtFkrE87JBSd"

Header Fields

KeyDescription of value
X-SBG-Auth-Token
required
Your CAVATICA authentication token.
Content-type
required
application/json

Path parameters

KeyDescription of value
export_idThe ID of the export job as returned by Start an export job.

Response

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

Response body

The response object contains information about the status of the export job. The information is structured using the following key-value pairs:

KeyData type of valueDescription of value
idStringID of this export job
stateStringThe state of this export job. Possible values are:
PENDING: the export is queued;
RUNNING: the export is running;
COMPLETED: the export has completed successfully;
FAILED: the export has failed.
sourceObjectExport source, as passed when this job was started by the call to start an export job .
fileStringID of the file that was exported.
destinationObjectExport destination, as passed when this job was started by the call to Start an export job.
volumeStringID of the volume where to export.
`locationStringLocation on the volume where the file should be exported.
started_onStringTime when the export job was started.
finished_onStringTime when the export job was finished.
propertiesObjectContains properties related to the export, including:
"sse_algorithm" - algorithm used for S3 encryption
"aws_storage_class" - storage class (STANDARD or GLACIER)
* "aws_canned_acl" - ACL which is set on the S3 bucket
overwriteBooleanWhether the file should be overwritten in the destination.

Example response body - successfully completed export

{
  "href": "https://cavatica-api.sbgenomics.com/v2/storage/exports/trand0mgPWZbeXxtADETWtFkrE87JBSd",
  "id": "trand0mgPWZbeXxtADETWtFkrE87JBSd",
  "state": "COMPLETED",
  "source": {
    "file": "567890abc1e5339df0414123"
  },
  "destination": {
    "volume": "rfranklin/output",
    "location": "output.vcf"
  },
  "started_on": "2016-06-15T19:17:39Z",
  "finished_on": "2016-06-15T19:17:41Z",
  "properties": {
    "sse_algorithm": "AES256",
    "aws_storage_class": "STANDARD",
    "aws_canned_acl": "public-read"
  },
  "overwrite": false
}

Example response body - failed export

{
  "href": "https://cavatica-api.sbgenomics.com/v2/storage/exports/prand0mBrcK8tVRZJeQXs87mh6sH43tM",
  "id": "prand0mBrcK8tVRZJeQXs87mh6sH43tM",
  "state": "FAILED",
  "error": {
    "status": 409,
    "code": 9107,
    "message": "Location on volume already contains a file. Check the documentation.",
    "more_info": "http://docs.sevenbridges.com/docs/api-status-codes#9107"
  },
  "source": {
    "file": "567890abc8a5136ec6127063"
  },
  "destination": {
    "volume": "rfranklin/output",
    "location": "_4_s3_file.jpg"
  },
  "started_on": "2016-06-22T13:38:57Z",
  "finished_on": "2016-06-22T13:38:57Z",
  "properties": {
    "sse_algorithm": "AES256",
    "sse_aws_kms_key_id": "723c949a-789c-12b3-45b6-b2dd0d8d0021",
    "aws_canned_acl": "public-read"
  },
  "overwrite": false
}
Language