I saw <nc:system-tags /> option in PROPFIND request’s payload in version 28 when I tried adding the same to PROPFIND request’s payload in version 18 its not working. Giving 404 error.
PROPFIND curl request in version 18:
curl --location --request PROPFIND ‘{{http}}://{{urlfront}}/remote.php/dav/files/{{username}}/’
–header ‘Depth: 0’
–header ‘Accept: application/json’
–header ‘Content-Type: application/xml’
–header ‘Authorization: Basic ’
–data ‘<?xml version="1.0"?>
<d:propfind xmlns:d=“DAV:” xmlns:oc=“http://owncloud.org/ns” xmlns:nc=“http://nextcloud.org/ns” xmlns:ocs=“http://open-collaboration-services.org/ns”>
<d:prop>
<d:getlastmodified />
<d:resourcetype />
<d:quota-used-bytes />
<d:quota-available-bytes />
<oc:permissions />
<d:getetag />
<oc:owner-id />
<nc:system-tags />
</d:prop>
</d:propfind>’
same PROPFIND curl request in version 28:
Is <nc:system-tags /> option doesn’t supported in PROPFIND request in version 18??
Trying to use it in Files Access Control App.