Get default available locales

get

/km/api/v1/repositories/default/availableLocales

This method returns a list of Locale objects available in the default Repository object in the Oracle Knowledge system.

The default repository is the one which the user is currently logged in

This resource supports the orderBy request parameter, which allows you to sort the returned list of Locale objects.

You can find different values to use with the orderBy parameter in the schema and catalog information of the resource. To get the schema and catalog information, use GET method with the mediaType value as 'application/schema+json' in the HTTP request.

The example URI to get schema and catalog of the resource is as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/metadata-catalog/locales

Example URIs

The example URIs for this method are as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/repositories/default/availableLocales

    The request returns a list of Locale objects associated with the Repository to which the current user is logged in sorted by locale code in ascending order.

  • http://<IM_REST_API_HOST>/km/api/latest/repositories/default/availableLocales?orderBy=localeCode:desc

    The request returns a list of Locale objects associated with the Repository to which the current user is logged in sorted by locale code in descending order.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : ResultList LocaleKey
Type: object
Title: ResultList LocaleKey
Match All
Show Source
Nested Schema : Collection Paging Resource
Title: Collection Paging Resource
Oracle base collection resource schema definition.
Match All
Show Source
Nested Schema : Base Collection Resource
Title: Base Collection Resource
Oracle base collection resource schema definition.
Match All
Show Source
Nested Schema : Singular Resource
Type: object
Title: Singular Resource
Oracle base singular resource schema definition.
Show Source
Nested Schema : Base Collection Resource-allOf[1]
Type: object
Show Source
Nested Schema : Collection Paging Resource-allOf[1]
Type: object
Show Source
Nested Schema : ResultList LocaleKey-allOf[1]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Nested Schema : items
Type: array
Show Source
Nested Schema : LocaleKey
Match All
Show Source
Nested Schema : LocaleKey-allOf[1]
Type: object
Show Source
Back to Top

Examples

The following example shows how to find all Locale objects available in the default repository object in Oracle Knowledge repository by submitting a get request on the REST resource using cURL.

cURL Command

Command: curl -X "GET" "http://<IM_REST_API_HOST>/km/api/latest/repositories/default/availableLocales"

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