Translations
Translate Text
Key
Type
Default
Description
$client = new GuzzleHttp\Client(['base_uri' => 'https://{tenant}.intratool.de']);
$response = $client->request('POST', '/api/translations/translate-text', [
'headers' => ['Authorization' => "Bearer {accessToken}"],
'json' => [
'target_lang_id' => 'fr-FR',
'text' => [
'Hello world!',
'This is a test.',
'<strong>Bold text</strong>'
],
'is_html' => true
]
]);Translate Entities
Key
Type
Default
Description
Last updated