Delete user group

delete

/km/api/v1/userGroups/{id}

This method deletes the UserGroup object having the specified ID parameter.

Request

Path Parameters
  • The unique identifier of the object to be deleted.
Back to Top

Response

204 Response

No Content.
Back to Top

Examples

The following example shows how to delete an User Group object from Oracle Knowledge repository by submitting a delete request on the REST resource using cURL.

curl -X "DELETE" "https://<IM_REST_API_HOST>/km/api/latest/userGroups/{id}" -u "<username:password>" -H "Accept: application/json" -H "Content-Type: application/json"

Example of Response Body

The following example shows the contents of the response body in JSON format:

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