GET /api-web/api/dms/objects/{id}

As of Version

product version 2020 Autumn | component version 

Request MethodGET
Response FormatJSON
Description

Retrieves the metadata of the DMS object specified by its object ID id.

Response HTTP status codes:

HTTP Status CodeMeaning
200 OK
401 Unauthorized
404 Unable to find DMS object.
Request Example

https://<host>/api-web/api/dms/objects/4711-44321-666777888

Response Example

200 OK

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