Find by ID

get

/km/api/v1/locales/{id}

This method returns the Locale object specified by the ID parameter.

Example URIs

The example URIs for this method are as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/locales/{id}

    This method returns the Locale object having the specified ID parameter in the FULL mode.

  • http://<IM_REST_API_HOST>/km/api/latest/locales/{id}?mode=KEY

    This method returns the Locale object having the specified ID parameter in KEY mode.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : Locale
Match All
Show Source
Nested Schema : LocaleKey
Match All
Show Source
Nested Schema : Singular Resource
Type: object
Title: Singular Resource
Oracle base singular resource schema definition.
Show Source
Nested Schema : LocaleKey-allOf[1]
Type: object
Show Source
Nested Schema : Locale-allOf[1]
Type: object
Show Source
Nested Schema : LanguageKey
Match All
Show Source
Nested Schema : LanguageKey-allOf[1]
Type: object
Show Source
Back to Top

Examples

The following example shows how to find the Locale object specified by the ID parameter by submitting a get request on the REST resource using cURL.

cURL Command

curl -X "GET" "http://<IM_REST_API_HOST>/km/api/latest/locales/{id}"

Example of Request Header

The following shows an example of the request header.

-H "kmauthtoken: {\"siteName\":\"ORACLE_KNOWLEDGE\",\"integrationUserToken\":\"\"+eCJYkxKwj5HUaIiJYun0/TpatwT1LmtcsF05W33xnEojifV/AsLDj9RpN0lKuorTMNKeSE1tgC7svVL+BzntqDON4KiM1HFlpxvXEUCB0P2w0Xrs75McygqxdVaDSE9"}" \
-H "Accept: application/json"

Example of Response Body

The following shows an example of the response body in JSON format.

{
  "active" : true,
  "dateAdded" : "2013-04-23T21:06:42EDT",
  "dateFormat" : "DATEFORMAT_VALUE",
  "dateFormatDisplay" : "DATEFORMATDISPLAY_VALUE",
  "dateModified" : "2013-04-23T21:06:42EDT",
  "encoding" : "UTF-8",
  "groupDefault" : true,
  "localeCode" : "en_US",
  "localeDesc" : "English United States",
  "localeValue" : 1033,
  "timeFormat" : "%I:%M %p",
  "timeFormatDisplay" : "hh:mm",
  "language" : {
    "links" : [ {
      "rel" : "canonical",
      "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
      "mediaType" : "application/json, application/xml",
      "templated" : true,
      "method" : "GET",
      "profile" : "http://<IM_REST_API_HOST>/km/api/{version}/metadata-catalog/{resourceName}"
    } ]
  },
  "recordId" : "en_US",
  "links" : [ {
    "rel" : "canonical",
    "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
    "mediaType" : "application/json, application/xml",
    "templated" : true,
    "method" : "GET",
    "profile" : "http://<IM_REST_API_HOST>/km/api/{version}/metadata-catalog/{resourceName}"
  } ]
}
Back to Top