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.
Nome | Valore | Descrizione |
---|---|---|
nome obbligatorio | nella stringa | Full directory path that should be modified (e.g. /MainPage/AboutUs). |
new_name optional | nella stringa | New directory name. |
titolo opzionale | nella stringa | New directory title to be displayed in Crowdin UI. |
export_pattern opzionale | nella stringa | New directory export pattern. Usato per creare il nome e il percorso della directory nel pacchetto delle traduzioni risultato. |
ramo opzionale | nella stringa | Il nome del ramo versione relativo (Versioni Gestione). |
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>
</success>
<?xml version="1.0" encoding="UTF-8"?>
<error>
<code>3</code>
<message>Chiave API non valida</message>
</error>
curl \
-F "name=localizable" \
-F "title=Website" \
-F "new_name=translatable" \
https://api.crowdin.com/api/project/{project-identifier}/change-directory?login={username}&account-key={account-key}
<?php
$post_params = array();
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/change-directory?login={username}&account-key={account-key}';
$post_params['name'] = '/localizable/texts';
$post_params['new_name'] = 'translations';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $request_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_params);
$result = curl_exec($ch);
curl_close($ch);
echo $result;