Bitte beachten Sie, dass API 2.0 jetzt die bevorzugte Version ist. Die alte API bleibt bis Ende 2021 voll funktionsfähig.
Name | Wert | Beschreibung |
---|---|---|
unit optional | String | Defines the report unit. Acceptable values are: 'strings', 'words' (by default), 'chars', 'chars_with_spaces'. |
language optional | String | The language for which the report should be generated. For this use Сrowdin language codes. |
date_from optional | date | Strings added from. Use the following ISO 8601 format: YYYY-MM-DD ±hh:mm |
date_to optional | date | Strings added to. Use the following ISO 8601 format: YYYY-MM-DD ±hh:mm |
format optional | String | Defines the export file format. Acceptable values are 'csv' and 'xlsx' (by default). |
json optional | String | Könnten keinen Wert enthalten. Definiert, dass die Antwort im JSON-Format sein soll. |
jsonp optional | String | Name der Rückruffunktion. Definiert, dass die Antwort im JSONP-Format sein soll. |
Variablen | ||
project-identifier | String | Projekt-ID. |
login | String | Ihr Nutzername auf Crowdin. |
account-key | String | Ihr Konto-API-Schlüssel. |
<?xml version="1.0" encoding="UTF-8"?>
<success>
<hash>cd798eb822227162375675b9a4e8a95a1</hash>
</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}/reports/top-members/export?login={username}&account-key={account-key}
curl \
-F "unit=chars" \
-F "format=csv" \
-F "language=uk" \
https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?login={username}&account-key={account-key}
<?php
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?mode=words&login={username}&account-key={account-key}&language=uk';
$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;