Exportieren der Quellsystemkonfiguration

Anfrage: Abfragen von MasterData-Attributen

  • dmsdocs-App: GET https://<BaseUrl>/dmsdocs/r/<Repository-ID>/objectmanagement/properties

  • Standalone-Anwendung: GET http://<Lokale IP>:8333/repoexport/objectmanagement/properties

  • Content-Type: application/json

Antwort:

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

Anfrage: Abfragen von MasterData-Kategorien

  • dmsdocs-App: GET https://<Basis-URL>/dmsdocs/r/<Repository-ID>/objectmanagement/categories

  • Standalone-Anwendung: GET http://<Lokale IP>:8333/repoexport/objectmanagement/categories

  • Content-Type: application/json

Antwort:

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