Open Documentation Menu

Exporting the source system configuration

Request: Querying master data properties

  • dmsdocs app: GET https://<base URL>/dmsdocs/r/<repository ID>/objectmanagement/properties

  • Standalone application: GET http://<local IP>:8333/repoexport/objectmanagement/properties

  • Content type: application/json

Response:

{
  "_embedded": {
    "properties": [
      {
        "dataType": "CHAR",
        "id": 6,
        "isMultiValue": false,
        "name": {
          "de": "Alphanumerisch"
        }
      },
      {
        "dataType": "CHAR",
        "id": 7,
        "isMultiValue": false,
        "name": {
          "de": "Alphanumerisch2"
        }
       },...
        ]
    }
}

Request: Querying master data categories

  • dmsdocs app: GET https://<base URL>/dmsdocs/r/<repository ID>/objectmanagement/categories

  • Standalone application: GET http://<local IP>:8333/repoexport/objectmanagement/categories

  • Content type: application/json

Response:

{
  "_embedded": {
    "categories": [
      {
        "id": "AAKTE",
        "name": {
          "de": "Akte"
        },
        "propertyRefs": [
          {
            "propertyId": "DOCUMENT_ID"
          },
          {
            "propertyId": "CATEGORY"
           },...
                ]
            }
         ]
    }
}

/dmsdocs