Build ZIP archive with the latest translations.
This method can be invoked once per 30 minutes if case you are not using one of the organization plans. You can check if ZIP archive with the latest translations was built by status attribute ("built" or "skipped") returned in the response.
Name | Value | Description |
---|---|---|
branch optional | string | The name of related version branch (Versions Management). |
async optional | bool | Defines whether the call will be executed asynchronously – 1 or not – 0. Default is 0. This means that this API method can be invoked and get an immediate response that the request was accepted. |
json optional | string | May not contain value. Defines that response should be in JSON format. |
jsonp optional | string | Callback function name. Defines that response should be in JSONP format. |
Variables | ||
project-identifier | string | Project identifier. |
project-key | string | Project API key. Either the project-key or combination of login and account-key are required. |
login | string | Your username in Crowdin. Either the project-key or combination of login and account-key are required. |
account-key | string | Your account API key. Either the project-key or combination of login and account-key are required. |
<?xml version="1.0" encoding="UTF-8"?>
<success status="built">
</success>
<?xml version="1.0" encoding="UTF-8"?>
<success status="skipped">
</success>
<?xml version="1.0" encoding="UTF-8"?>
<error>
<code>3</code>
<message>API key is not valid</message>
</error>
curl \
https://api.crowdin.com/api/project/{project-identifier}/export?key={project-key}
<?php
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/export?key={project-key}';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $request_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
echo $result;