Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section
titleExample
Transclusion
documentDocuments Service / PATCH
idsfetch-document-IDs-with-curl

Code Block
languagetext
titlecURL Call
curl -n -X PATCH  -H "Content-Type: application/json" \
    https://example.com/confluence/rest/projectdoc/1/document?id-list=12845218,12845219,12845221 \
    -d @deleteParentService.json
Transclusion
documentTips for the Web API Examples
ids.netrc File

Code Block
languagejs
titledeleteParentService.json
{
    "property": [
      {
        "name": "Parent Service",
        "position": "delete"
      }
    ]
}

...