Replace all custom key values

patch

/km/api/v1/users/{id}/customKeyValues

This method replaces the UserKeyValue relationship of the User object with the list of UserKeyValue objects.

Request

Supported Media Types
Path Parameters
Body ()
The List of UserKeyValue objects
Root Schema : List UserKeyValueKey
Type: object
Title: List UserKeyValueKey
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : UserKeyValueKey
Match All
Show Source
Nested Schema : Singular Resource
Type: object
Title: Singular Resource
Oracle base singular resource schema definition.
Show Source
Nested Schema : UserKeyValueKey-allOf[1]
Type: object
Show Source
Back to Top

Response

204 Response

No Content.
Back to Top

Examples

The following example shows how to update the User Key Value relationship of the user object with the list of User Key Value objects by submitting a patch request on the REST resource using cURL.

cURL Command

curl -X "PATCH" "http://<IM_REST_API_HOST>/km/api/latest/users/{id}/customKeyValues"

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.

{
  "items" : [ {
    "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