Get Specific Translation Details for a Host Company or Partner Organization

get

/rest/v16/companies/{companyLoginName}/translations/{languageCode}

This endpoint retrieves the translation details for a host company or partner organization.

Request

Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Company translation details of a language.
Body ()
Root Schema : Company Translation
Type: object
Title: Company Translation
Show Source
Nested Schema : Translation Language
Type: object
Title: Translation Language
Show Source
Back to Top

Examples

The following example shows how to retrieve specific translation details for a host company or partner organization 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" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/companies/visionServices/translations/zh_CN

Response Body Sample

{
  "name": "Vision Services zh_CN",
  "language": {
    "languageNumber": 5,
    "languageCode": "zh_CN",
    "links": [{
        "rel": "domain",
        "href": "http://sitename.oracle.com/rest/v16/languages"
      }, {
        "rel": "canonical",
        "href": "http://sitename.oracle.com/rest/v16/languages/zh_CN"
      }
    ]
  },
  "links": [{
      "rel": "self",
      "href": "http://sitename.oracle.com/rest/v16/companies/visionServices/translations/zh_CN"
    }
  ]
}
Back to Top