Add Rate Card Template Translations

put

/rest/v19/pricingSetup/rateCardTemplates/{templateVariableName}/translations

Use this endpoint to add rate card template 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
The details of the user who created the record.
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
The details of the user who modified the record.
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 Template translations by submitting a PUT request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X PUT -H "Authorization: Bearer <token>" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v19/pricingSetup/rateCardTemplates/dataUsageRateCardTemplate

Request Body

[{
    "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"
  }
]
Back to Top