Rate content

post

/km/api/v1/content/{id}/rate

This method rates the latest valid version of the Content object with the specified id.

The latest valid version of the Content object is either the published live or the latest version of the Content object. The request payload and the URI for the new resource must be specified along with the POST method.

NOTE: The content owner cannot rate the content.

Response Errors

  • OKDOM-GEN0001

    The error occurs when an invalid id has been given.

Request

Supported Media Types
Path Parameters
Body ()
The rating which requires SurveyAnswerId. The SurveyId, LocalId and answerComment parameters are optional.
Root Schema : SingleAnswerRating
Type: object
Title: SingleAnswerRating
Show Source
Nested Schema : DataFormAnswerKey
Match All
Show Source
Nested Schema : LocaleKey
Match All
Show Source
Nested Schema : DataFormKey
Match All
Show Source
Nested Schema : UserKey
Match All
Show Source
Nested Schema : Singular Resource
Type: object
Title: Singular Resource
Oracle base singular resource schema definition.
Show Source
Nested Schema : DataFormAnswerKey-allOf[1]
Type: object
Show Source
  • The unique record ID of the DataFormAnswer object.
  • The reference key for the DataFormAnswer object. DataFormAnswer objects support multiple languages. This field can be used to identify the associated objects for all languages.
Nested Schema : LocaleKey-allOf[1]
Type: object
Show Source
Nested Schema : DataFormKey-allOf[1]
Type: object
Show Source
  • The unique record ID of the DataForm object.
  • The reference key for the DataForm object. DataForm objects support multiple languages. This field can be used to identify the associated objects for all languages.
Nested Schema : UserKey-allOf[1]
Type: object
Show Source
  • Email of the User object
  • The ExternalId is the Id of the corresponding User from an external system. It, along with ExternalType, can be used to bridge the gap between a User from this system and a User from an external system.
  • The ExternalType is the type of the corresponding User from an external system. It, along with ExternalId, can be used to bridge the gap between a User from this system and a User from an external system.
  • User's full name
  • The unique record ID of the User object.
Back to Top

Response

204 Response

No Content.
Back to Top

Examples

The following example shows how to rate the latest valid version of the Content object with the specified content ID by submitting a post request on the REST resource using cURL.

cURL Command

Command: curl -X "POST" "http://<IM_REST_API_HOST>/km/api/latest/content/{id}/rate"

Example of Request Header

The following shows an example of the request header.

-H "kmauthtoken: {\"siteName\":\"ORACLE_KNOWLEDGE\",\"integrationUserToken\":\"\"+eCJYkxKwj5HUaIiJYun0/TpatwT1LmtcsF05W33xnEojifV/AsLDj9RpN0lKuorTMNKeSE1tgC7svVL+BzntqDON4KiM1HFlpxvXEUCB0P2w0Xrs75McygqxdVaDSE9",\"userToken\":\"UoyWTKRG4RpyJCH4Wqjzht2iYUrsDdk5ir+3IpwEkxcwajJkGR9OGSQBTANQVGW0iVT9MFeDzqL+RYdgfzGSK+h5QzDFIDM+rDLgdKeEE19ljWFm3zMCF+kgYp/dJ/Yq5V7Re+aDXqHg6YkHfvprFA==\"}" \
-H "Accept: application/json"

Example of Request Body

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

{
  "survey" : {
    "recordId" : "0480165035cb2f4a014581a0f299007b3a",
    "referenceKey" : "REFERENCEKEY_VALUE",
    "links" : [ {
      "rel" : "canonical",
      "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
      "mediaType" : "application/json, application/xml",
      "templated" : true,
      "method" : "GET"
    } ]
  },
  "locale" : {
  },
  "answer" : {
  },
  "answerComment" : "ANSWER_COMMENT"
}
Back to Top