Get the status of translations export.
Name | Wert | Beschreibung |
---|---|---|
branch optional | String | Der Name des dazugehörigen Versionszweigs (Versionsverwaltung). |
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. |
Variablen | ||
project-identifier | String | Projekt-ID. |
project-key | String | Projekt-API-Schlüssel. Entweder project-key oder die Kombination aus login und account-key wird benötigt. |
login | String | Ihr Nutzername auf Crowdin. Entweder project-key oder die Kombination aus login und account-key wird benötigt. |
account-key | String | Your account API key. Entweder project-key oder die Kombination aus login und account-key wird benötigt. |
The successful response status can be one of none
, in-progress
or finished
.
If the export is finished, the method returns the following XML structure:
<?xml version="1.0" encoding="UTF-8"?>
<success>
<status>finished</status>
<progress>100</progress>
<last_build>2018-10-22T13:49:00+0000</last_build>
</success>
<?xml version="1.0" encoding="UTF-8"?>
<success>
<status>in-progress</status>
<progress>29</progress>
<last_build>2018-10-18T16:08:00+0000</last_build>
<current_file>example.xml</current_file>
<current_language>Ukrainian</current_language>
</success>
<?xml version="1.0" encoding="UTF-8"?>
<success>
<status>none</status>
<progress>0</progress>
<last_build>never</last_build>
</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/{Projekt-ID}/export-status?key={Projektschlüssel}
<?php
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/export-status?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;