Create a TSV Request
To create a request, set up the API APP, and review the information about creating a request here.
Here’s what your request should look like:
POST https://hub.celtra.io/api/exportToTsv
Authorization: Basic <your API App ID> <your API App Secret>
Content-Type: application/json; charset=utf-8
{
"filters": {
"designFile": {
"id": ["d1m6jqpdaglh"]
},
},
"responseFormat": "urls",
"filename": "Exported outputs"
}
Replace "mockedDesignFileId"
with a valid ID of a project you have access to.
Response
Response depends on what is specified in the “responseFormat”
.
TSV with urls
If you specify "responseFormat": "urls"
in your request, you will get a single TSV file with links to assets that expire in 30 days.
TSV with assets
If you specify "responseFormat": "assets"
in your request, you will get a ZIP file that will include a TSV file and also all the exported assets.
To get a TSV Response, we recommend you first make calls to /export until all outputs are done processing and once ready, make the final TSV request.