Get All Rate Card Template Translations
get
/rest/v19/pricingSetup/rateCardTemplates/{templateVariableName}/translations
Use this endpoint to retrieve translations for the specified rate card template.
Request
Path Parameters
Query Parameters
-
fields: string
This parameter filters the resource attributes. Only the specified attributes are returned, which means that if no attributes are specified, all attributes are returned.
Response
Supported Media Types
- application/json
200 Response
Success
Examples
The following example shows how to retrieve translations for the specified Rate Card Template by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/pricingSetup/rateCardTemplates/zoomPhoneCallTemplate/translations
Response Body Sample
{
"items":
[{
"languageCode": "en",
"languageLabel": "English",
"name": "Zoom Phone Call Template",
"description": "This is some sample text"
}, {
"languageCode": "de",
"languageLabel": "German",
"name": "Vorlage fur Zoom-Telefonanrufe",
"description": "Dies ist ein Beispieltext"
}, {
"languageCode": "fr",
"languageLabel": "French",
"name": "Modele d'appel telephonique Zoom",
"description": "Ceci est un exemple de texte"
}
]
}