PUT-Requests

Ziel: Migrationsberechtigungen erteilen bzw. entziehen

Anfrage/Subroute: PUT https://<Mandant>.d-velop.cloud/dmsdocs/r/<Repository-ID>/user/d3Id/<d3Id>

JSON-Body für Anfrage:

{ 
 "d3Id": "user1",
 "hasExportRight": true,
 "hasMigrationRight": false,
 "idpId": "7B841E93-EC4E-4790-B9D7-AD7F5DFCC82B"

}

Beispielantwort des Endpunkts:

{
  "_links": {
     "self": {
       "href": "https://<baseUrl>/dmsdocs/r/<repoUuid>/user/d3Id/user1",
       "templated": false
     }
  },
  "d3Id": "user1",
  "hasExportRight": true,
  "hasMigrationRight": false,
  "idpId": "7B841E93-EC4E-4790-B9D7-AD7F5DFCC82B"
}