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.
Navn | Parameter | Beskrivelse |
---|---|---|
login obligatorisk | string | Dit Kontologinnavn. |
json valgfri | string | Må ikke indeholde numerisk værdi. Definerer, at svaret skal være i JSON-formatet. |
jsonp valgfri | string | Returkaldsfunktionsnavn. Definerer, at svaret skal være i JSONP-formatet. |
Variabler | ||
account-key | string | Account API key (Account Settings -> API tab). |
<?xml version="1.0" encoding="UTF-8"?>
<success>
<project>
<name>Mit projekt</name>
<identifier>my-project</identifier>
<key>d8e8fca2dc0f896fd7cb4cb0031ba249</key>
</project>
</success>
<?xml version=".0" encoding="ISO-8-1"?>
<error>
<code>12</code>
<message>Kontonøgle er ugyldig</message>
</error>
curl -F "login={crowdin-login-name}" https://api.crowdin.com/api/account/get-projects?account-key={account-key}
<?php
$request_url = 'https://api.crowdin.com/api/account/get-projects?account-key={account-key}';
$post_params['login'] = '{crowdin-login-name}';
$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;