Please consider that API 2.0 is now the preferred version to be used. The old API will remain fully functional until the end of 2021.
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.
Nome | Valore | Descrizione |
---|---|---|
ramo opzionale | nella stringa | Il nome del ramo versione relativo (Versioni Gestione). |
async optional | booleano | Defines whether the call will be executed asynchronously – 1 or not – 0. Predefinito è 0. This means that this API method can be invoked and get an immediate response that the request was accepted. |
json opzionale | nella stringa | Potrebbe non contenere il valore. Definisce che la risposta dovrebbe essere in formato JSON. |
jsonp opzionale | nella stringa | Nome della funzione di callback. Definisce che la risposta dovrebbe essere in formato JSONP. |
Variabili | ||
identificatore-progetto | nella stringa | Identificatore progetto. |
accesso | nella stringa | Il tuo nome utente su Crowdin. |
chiave-profilo | nella stringa | La chiave API del tuo profilo. |
<?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>Chiave API non valida</message>
</error>
curl \
https://api.crowdin.com/api/project/{project-identifier}/export?login={username}&account-key={account-key}
<?php
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/export?login={username}&account-key={account-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;