Catalog of Translation for Jira Service Management REST API resources.
Gets translation for text using project and shared configuration.
/rest/intenso/translation/1.0/configuration/translation/{projectId}
Method: POST
| Path param | Type | Description |
|---|---|---|
| projectId | number | ID of a project of which configuration will be considered. |
Body: TextTranslationModel
Response: TextTranslationModel - text property will hold the translated value for the provided text. If a translation does not exist for a text, then the text itself is returned.
Request:
/rest/intenso/translation/1.0/configuration/translation/10100
{
"text": "Text to translate"
}
Response:
{
"text": "Translated text"
}
Gets translations for texts using project and shared configuration.
/rest/intenso/translation/1.0/configuration/translations/{projectId}
Method: POST
| Path param | Type | Description |
|---|---|---|
| projectId | number | ID of a project of which configuration will be considered. |
Body: List
Response: List
Request:
/rest/intenso/translation/1.0/configuration/translations/10100
[{
"text": "Text to translate"
},
{
"text": "Second text to translate"
}]
Response:
[{
"text": "Translated text"
},{
"text": "Second text to traslate"
}]
Gets translation for text using shared configuration.
/rest/intenso/translation/1.0/configuration/translation
Method: POST
Body: TextTranslationModel
Response: TextTranslationModel - text property will hold the translated value for the provided text. If a translation does not exist for a text, then the text itself is returned.
Request:
/rest/intenso/translation/1.0/configuration/translation
{
"text": "Text to translate"
}
Response:
{
"text": "Shared translated text"
}
Gets translations for texts using shared configuration.
/rest/intenso/translation/1.0/configuration/translations
Method: POST
Body: List
Response: List
Request:
/rest/intenso/translation/1.0/configuration/translations
[{
"text": "Text to translate"
},
{
"text": "Second text to translate"
}]
Response:
[{
"text": "Translated text"
},{
"text": "Second text to traslate"
}]
If you can’t find the answer you need in our documentation, raise a support request.
Include as much information as possible to help our support team resolve your issue faster.