Create manual link

post

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

This method relates a content object with the specified Content at document or locale level.

If isRelatedAtDocLevel is set to true then content will be related to the specified content at document level otherwise it will be linked at specified locale

Response Errors

  • OKDOM-GEN0001

    The error occurs when an invalid id has been given.

  • OKDOM-CONT0208

    The error occurs when the content is already related to the passed in related content at document level.

  • OKDOM-CONT0205

    The error occurs when the content is already related to the passed in related content and locale.

  • OKDOM-CONT0206

    The error occurs when the content and passed in related content are same.

  • OKDOM-CONT0207

    The error occurs when the related content is not enabled for content type of the content or passed in related content.

Request

Supported Media Types
Path Parameters
Body ()
The relatedContentBO will contain related content id along with source and related locale.
Root Schema : RelatedContent
Type: object
Title: RelatedContent
Show Source
Nested Schema : ContentKey
Match All
Show Source
Nested Schema : LocaleKey
Match All
Show Source
Nested Schema : Singular Resource
Type: object
Title: Singular Resource
Oracle base singular resource schema definition.
Show Source
Nested Schema : ContentKey-allOf[1]
Type: object
Show Source
Nested Schema : allTranslations
Type: array

This field will return list of all translated content that the user can view

This field will only be populated if allTranslations query parameter is passed in with value true.

Show Source
Nested Schema : LocaleKey-allOf[1]
Type: object
Show Source
Back to Top

Response

204 Response

No Content.
Back to Top

Examples

The following example shows how to relate a Content object with the specified Content at document level by submitting a post request on the REST resource using cURL.

cURL Command

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

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.

{
  "relatedContent" : {
    "recordId" : "000220141586401891fd714a9007fd8"
  },
  "sourceLocale" : {
    "recordId" : "en_US"
  },
  "relatedLocale" : {
    "recordId" : "en_US"
  },
  "isRelatedAtDocLevel" : "false"
}

Example of Response Body

This request does not return any response body.

Back to Top