Request
POST https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?key={project-key}
Parameters
Name | Value | Description |
---|---|---|
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 | May contain no value. Defines that response should be in JSON format. |
jsonp optional | string | Callback function name. Defines that response should be in JSONP format. |
Variables | ||
project-key required | string | Project API key. |
project-identifier required | string | Should contain the project identifier. |
Response
If the method is successful it responds with an XML structure, as it is shown below. Unsuccessful response sample:
<?xml version="1.0" encoding="ISO-8859-1"?>
<success>
<hash>cd798eb822227162375675b9a4e8a95a1</hash>
</success>
<?xml version="1.0" encoding="ISO-8859-1"?>
<error>
<code>3</code>
<message>API key is not valid</message>
</error>
Examples
curl \
https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?key={project-key}
curl \
-F "unit=chars" \
-F "format=csv" \
-F "language=uk" \
https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?key={project-key}
<?php
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?mode=words&key={project-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;