Add Rate Card Template Column Translations

put

/rest/v19/pricingSetup/rateCardTemplates/{templateVariableName}/columns/{id}/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 column 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/columns/36991124

Request Body

[{
    "languageCode": "en",
    "name": "From Country",
    "description": "...."
  }, {
    "languageCode": "de",
    "name": "Vom Land",
    "description": "...."
  }
]
Back to Top