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.


...

{ "objects": [ { "properties": { "system:objectId": { "value": "4711-44321-666777888" }, "subject": { "value": "Sie sind der Doc, Doc." } } } ], "numItems": 0, "hasMoreItems": true, "totalNumItems": 0 }

any content file in the request body

As of Version

product version 2020 Autumn | component version 

Request MethodPOST
Response FormatJSON
Description


Excerpt

Returns a dms object content.

The role YUUVIS_TENANT_ADMIN is required

Updates the binary content file assigned to the object specified by its object ID id with the file passed in the request body.

The response body contains the metadata of the corresponding object.

Response HTTP status codes:

HTTP Status CodeMeaning
200 200 OKSuccessful.
304 304 Not ModifiedNot successful.
401 401 UnauthorizedNot successful.
422 422 Unprocessable entityNot successful.


Request Example

https://<host>/api-web/api/dms/objects/234df-aca4-fe423/contents/file

Code Block
Response Example

200 OK

Code Block
{
  "objects": [
    {
      "properties": {
        "system:objectId": {
          "value": "4711-44321-666777888"
        },
        "subject": {
          "value": "Sie sind der Doc, Doc."
        }
      }
    }
  ],
  "numItems": 0,
  "hasMoreItems": true,
  "totalNumItems": 0
}


...