Find all

get

/km/api/v1/replacementTokens

The replacement text value displays the token's replacement text translation for the specified Locale object. If the token does not have a translation for the specified Locale, then the method displays the token's name as the replacement text to indicate to the user that the token exists, but that there is no translation for the specified Locale.

You can specify the Locale by setting the localeId parameter of the kmauthtoken header when making requests to the Oracle Knowledge REST API. Alternatively, if no localeId parameter value is supplied, then the method interprets the specified Locale as the default Locale object assigned to the logged in user. In both the cases, the specified Locale is referred to as the session's Locale. The logged in user is the user for which the userToken attribute on the kmauthtoken header was created. Additionally, the Locale can be specified by the Accept-Language header value or by the langpref request parameter. In both the cases, we refer to specified Locale as the request's Locale. If both the Accept-Language header and the langpref request parameter are present, the Accept-Language header is used as the specified Locale.

This resource supports the orderBy request parameter. You can use this parameter along with the HTTP service request to sort the returned list.

You must get the schema and catalog of the resource for additional values that you can use with the orderBy parameter. To get the schema and catalog of the resource, you must use the GET method with the mediaType value as 'application/schema+json' in the HTTP request.

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

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

Example URIs

The example URIs for this method are as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens

    The request returns a paginated list of ReplacementToken objects in FULL mode, with the replacement text displayed for the session's Locale.

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens?mode=KEY&limit=20&offset=0

    The request returns a paginated list of twenty ReplacementToken objects in KEY mode, starting with the ReplacementToken object at position 0 in the returned list, with the replacement text displayed for the session's Locale.

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens?langpref=es_ES

    The request returns a paginated list of ReplacementToken objects in FULL mode, with the replacement text displayed for the request's Locale, which was specified as Spanish.

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens, with Accept-Language header value 'it-IT'

    The request returns a paginated list of ReplacementToken objects in FULL mode, with the replacement text displayed for the request's Locale, which was specified as Italian.




Find by query

Supported Media Types: 'application/json', 'application/xml'



This method returns a list of ReplacementToken objects in the Oracle Knowledge Repository matching the specified criteria.

The replacement text value displays the token's replacement text translation for the specified Locale object. If the token does not have a translation for the specified Locale, then the method displays the token's name as the replacement text. This indicates to the user that the token exists, but that there is no translation for the specified Locale.

You can specify the Locale by setting the localeId parameter of the kmauthtoken header when making requests to the Oracle Knowledge REST API. Alternatively, if no localeId parameter value is supplied, then the method interprets the specified Locale as the default Locale object assigned to the logged in user. In both the cases, the specified Locale is referred to as the session's Locale. The logged in user is the user for which the userToken attribute on the kmauthtoken header was created. Additionally, the Locale can be specified by the Accept-Language header value or by the langpref request parameter. In both the cases, we refer to specified Locale as the request's Locale. If both the Accept-Language header and the langpref request parameter are present, the Accept-Language header is used as the specified Locale.

This resource supports the orderBy request parameter. You can use this parameter along with the HTTP service request to sort the returned list.

You must get the schema and catalog of the resource for additional values that you can use with the orderBy parameter. To get the schema and catalog of the resource, you must use the GET method with the mediaType value as 'application/schema+json' in the HTTP request.

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

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

Example URIs

The example URIs for this method are as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens?q=tokenName eq 'ORACLE_KNOWLEDGE'

    The request returns a paginated list of ReplacementToken objects in FULL mode with the tokenName ORACLE_KNOWLEDGE with the replacement text displayed for the session's Locale.

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens?q=tokenName in ('ORACLE_KNOWLEDGE', 'COPYRIGHT')

    The request returns a paginated list of ReplacementToken objects in FULL mode with the tokenName ORACLE_KNOWLEDGE or COPYRIGHT with the replacement text displayed for the session's Locale.

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens?q=replacementText likeAny ('*Oracle*')

    The request returns a paginated list of ReplacementToken objects in FULL mode with replacementText values that contain the word Oracle with the replacement text displayed for the session's Locale.

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens?q=tokenName eq 'ORACLE_KNOWLEDGE'&langpref=it_IT

    The request returns a paginated list of ReplacementToken objects in FULL mode with tokenName ORACLE_KNOWLEDGE with the replacement text displayed for the request's Locale, which was specified as Italian.

  • http://<IM_REST_API_HOST>/km/api/latest/replacementTokens?q=tokenName in ('ORACLE_KNOWLEDGE', 'COPYRIGHT'), with Accept-Language header value fr_FR

    The request returns a paginated list of ReplacementToken objects in FULL mode with tokenName ORACLE_KNOWLEDGE or COPYRIGHT with the replacement text displayed for the request's Locale, which was specified as French.

Query Parameters

The following table describes the query parameters for this resource.

ParameterQueryableSortableTypeDescription
recordIdYY'type' : 'string'The replacement token's record Id.
tokenNameYY'type' : 'string'The replacement token's name.
dateAddedYY'type' : 'string', 'format' : 'date-time'The date added for the replacement token for the specified locale.
dateModifiedYY'type' : 'string', 'format' : 'date-time'The date modified for the replacement token for the specified locale.
replacementTextYY'type' : 'string'The HTML formatted replacement text.
replacementTextNonFormattedYY'type' : 'string'The non-HTML formatted replacement text.

Request

Query Parameters
  • This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
  • This parameter defines amount of information to be included in the returned resources - KEY is the one that has least information (and hence performs better) and FULL is the one that has most information.
    Allowed Values: [ "KEY", "DATA", "EXTENDED", "FULL" ]
  • Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
  • This parameter orders a resource collection based on the specified attributes. The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and 'asc' or 'desc'. Specify 'asc' for ascending and 'desc' for descending. The default value is 'asc'. For example, ?orderBy=field1:asc,field2:desc.
  • Value for this parameter should be Oracle Knowledge Q query - see the 'Getting Started' documentation ('Querying' page) of this operation and documentation for Q query.
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : ResultList ReplacementToken
Type: object
Title: ResultList ReplacementToken
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 ReplacementToken-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 : ReplacementToken
Match All
Show Source
Nested Schema : ReplacementTokenKey
Match All
Show Source
Nested Schema : ReplacementTokenKey-allOf[1]
Type: object
Show Source
Nested Schema : ReplacementToken-allOf[1]
Type: object
Show Source
Back to Top

Examples

The following example shows how to find the token replacement text-translation for the specified locale object 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/replacementTokens"

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.

{
  "items" : [ {
    "dateAdded" : "2013-04-30T21:35:18EDT",
    "dateModified" : "2013-04-30T21:35:18EDT",
    "replacementText" : "\n    \t<p><a href=\"http://www.oracle.com/us/products/applications/knowledge-management/index.html\">Oracle Knowledge</a></p>\n\t\t<p> </p>\n\t",
    "replacementTextNonFormatted" : "Oracle Knowledge",
    "tokenType" : "RICH_TEXT",
    "recordId" : "0121040772e9a860142e278b51501243",
    "tokenName" : "ORACLE_KNOWLEDGE",
    "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}"
    } ]
  } ],
  "hasMore" : false,
  "limit" : 20,
  "offset" : 0,
  "links" : [ {
    "rel" : "canonical",
    "href" : "http://<IM_REST_API_HOST>/km/api/{version}/replacementTokens?limit=20&offset=0",
    "mediaType" : "application/json, application/xml",
    "method" : "GET"
  } ],
  "count" : 1
}
Back to Top