You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

projectdoc Toolbox

Delete properties for a set of documents specified by their IDs.

Example

cURL 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
deleteParentService.json
{
    "property": [
      {
        "name": "Parent Service",
        "position": "delete"
      }
    ]
}

Resources

REST Login to Confluence with cURL
To access Confluence via its REST API with cURL you typically need to authenticate. Learn how to login with cURL and avoid some common security pitfalls.
  • No labels