All URIs are relative to https://api.phrase.com/v2
Method | HTTP request | Description |
---|---|---|
formatsList | GET /formats | List formats |
\Phrase\Model\Format[] formatsList()
List formats
Get a handy list of all localization file formats supported in Phrase.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$config = Phrase\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
$config = Phrase\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'token');
$apiInstance = new Phrase\Api\FormatsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
try {
$result = $apiInstance->formatsList();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FormatsApi->formatsList: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]