Get a Part Translation

get

/rest/v16/partSetups/{id}/translations/{translationId}

Use this endpoint to retrieve the specified translation for a CPQ part.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Part Translation Setup Instance Definitions
Type: object
Title: Part Translation Setup Instance Definitions
Show Source
Nested Schema : Language
Type: object
Title: Language
The defined language of the rows translated columns.
Show Source
Back to Top

Examples

The following example shows how to retrieve the specified translation for a CPQ part 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 "Content-type: application/json"
http://sitename.oracle.com/rest/v16/partSetups/38644116/translations/38818015

Response Body

{
  "description": "L'entretien Premium couvre les inspections multipoints, ainsi que les soins prventifs et le remplacement des lments normaux d'usure normale qui ncessitent une attention priodique.",
  "dateModified": "2023-03-02T21:31:55.000Z",
  "language": {
    "languageNumber": 1,
    "languageCode": "fr",
    "id": 36329904,
    "links": [{
        "rel": "domain",
        "href": "https://sitename.oracle.com/rest/v16/languages"
      }, {
        "rel": "canonical",
        "href": "https://sitename.oracle.com/rest/v16/languages/36329904"
      }
    ]
  },
  "id": 38818015,
  "units": null,
  "dateAdded": "2023-03-02T21:31:55.000Z",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/partSetups/38644116/translations/38818015"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/partSetups/38644116"
    }
  ]
}
Back to Top