Add Rate Card Translations

put

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

Use this endpoint to add rate card translations.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : PricingMatrixResourceTranslationInput
Type: object
Show Source
Nested Schema : Translations
Type: array
Title: Translations
The list of translations.
Show Source
Nested Schema : PricingMatrixResourceTranslation
Type: object
Show Source
Nested Schema : Created By
Title: Created By
Read Only: true
The details of the user who created the record.
Match All
Show Source
Nested Schema : Last Modified By
Title: Last Modified By
Read Only: true
The details of the user who modified the record.
Match All
Show Source
Nested Schema : UserDetails
Type: object
Show Source
Back to Top

Response

204 Response

Success
Back to Top

Examples

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

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

Request Body

[{
    "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