Get All Pricing Matrix Template Translations

get

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

Use this endpoint to retrieve all translations for the specified pricing matrix template.

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 the specified pricing matrix template translations 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/matrixTemplates/testMatrixTemp1/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": "......",
      "description": "....."
    }, {
      ....
    }
  ]
}
Back to Top