Versions Compared

Key

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


Page Properties
hiddentrue
idDONE

Product Version
Report Note
Assignee

Resources & Remarks

Modification History

NameDateProduct VersionAction
Antje18 MAY 20212021 SummerPage created.
Antje16 DEC 20212022 SpringTags are NOT part of the metadata....



As of Version

product version 2020 Autumn | component version 

Request MethodPATCH
Response FormatJSON
Description


Excerpt

Updates the existing metadata including and/or tags of a an existing DMS object specified by its object ID id with the data passed JSON format in the request body.


The metadata of the modified Internally, the core API endpoint PATCH /api/dms/objects/{objectId} is called. Thus, only those properties that are part of the request body are changed. Properties that are missing in the request body are not changed by the update.

The modified DMS object is returned in the response body in JSON format.

Response HTTP status codes:

HTTP Status CodeMeaning
200 OK
401 Unauthorized


Response Example

200 OK

Code Block
{
  "objects": [
    {
      "properties": {
        "system:objectId": {
          "value": "4711-44321-666777888"
        },
        "subject": {
          "value": "This is an information about ..."
        },
        "system:secondaryObjectTypeIds": [
           "appClientsystem:leadingType",
           "tenMytenant:AdministrativeSOT"
       ],
       "system:tags": [
          ["index:resistant", 1],
          ["validate:resistant", 0]
       ]
      }
    }
  ],
  "numItems": 0,
  "hasMoreItems": true,
  "totalNumItems": 0
}


...