Get Rate Card Translations

get

/rest/v16/pricingSetup/rateCards/{rateCardVarName}/translations

Use this endpoint to retrieve all translations for the specified rate card.

Request

Path Parameters
Query Parameters
  • This parameter filters the resource attributes. Only the specified attributes are returned, which means that if no attributes are specified, all attributes are returned.
Back to Top

Response

Supported Media Types

200 Response

Success
Back to Top

Examples

The following example shows how to retrieve translations for the specified Rate Card by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/pricingSetup/naPhoneCallRateCard/translations

Response Body Sample

{
  "items":
  [{
      "languageCode": "en",
      "languageLabel": "English",
      "name": "NA Phone Call Rate Card",
      "description": "This is some sample text"
    }, {
      "languageCode": "de",
      "languageLabel": "German",
      "name": "NA-Tarifkarte fur Telefongesprache",
      "description": "Dies ist ein Beispieltext"
    }, {
      "languageCode": "fr",
      "languageLabel": "French",
      "name": "Carte tarifaire des appels telephoniques NA",
      "description": "Ceci est un exemple de texte"
    }, {
      ....
    }
  ]
}
Back to Top