Delete manual link by ID

delete

/km/api/v1/content/docId/{docId}/documentLinks/manual/{Id}

This method deletes the specified content association object.

Response Errors

  • OKDOM-GEN0001

    The error occurs when an invalid id has been given.

Request

Path Parameters
Back to Top

Response

204 Response

No Content.
Back to Top

Examples

The following example shows how to delete a specified content association object by submitting a delete request on the REST resource using cURL.

cURL Command

curl -X "DELETE" "http://<IM_REST_API_HOST>/km/api/latest/content/docId/{docId}/documentLinks/manual/{Id}"

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.

No Body

Example of Response Body

This request does not return any response body.

Back to Top