Rate content

post

/km/api/v1/dataForms/{contentId}/rateContent

Rates a latest valid content record if exists, for given contentId. Latest valid content is either published live or latest live content. Content Owner cannot rate the content.

Request

Supported Media Types
Path Parameters
Body ()
The user response value
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 rates the latest valid content record for the specified content id by submitting a post request on the REST resource using cURL.

cURL Command

curl -X "POST" "http://<IM_REST_API_HOST>/km/api/latest/dataForms/{contentId}/rateContent"

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://localhost:7002/km/api/{version}/{resourceURI}",
      "mediaType" : "application/json, application/xml",
      "templated" : true,
      "method" : "GET"
    } ]
  },
  "locale" : {
  },
  "answer" : {
  },
  "answerComment" : "ANSWER_COMMENT"
}

Example of Response Body

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

This request does not return any response body.
Back to Top