Create a Request Defining Content Variations
In this example, we want to apply a specific filter and narrow down our exported Images to a particular content variation and one of its values. In our project, we have Language set as a content variation, where en is its value.

Both variation and value names are case-sensitive.
Create a Request
To create a request, set up the API APP, and review the information about creating JSON, ZIP and TSV requests.
Here’s what your request should look like:
POST https://hub.celtra.io/api/export
Authorization: Basic <yourBase64Token>
Content-Type: application/json; charset=utf-8
{
"filters": {
"designFile": {
"id": ["mockedDesignFileId"]
},
"output": {
"contentDimensionsByName": {
"Language": "en"
}
}
}
}
<yourBase64Token>is a base64 encoded string of your API App ID and API APP Secret. Learn here how to set it up.
Replace
"mockedDesignFileId"with a valid ID of a project you have access to.