@dvelop-sdk
    Preparing search index...

    Interface CreateDmsObjectParams

    Parameters for the createDmsObject-function.

    interface CreateDmsObjectParams {
        categoryId: string;
        content?: ArrayBuffer;
        contentLocationUri?: string;
        contentUri?: string;
        fileName?: string;
        properties?: { key: string; values: string[] }[];
        repositoryId: string;
        sourceId: string;
    }
    Index

    Properties

    categoryId: string

    ID of the category for the DmsObject

    content?: ArrayBuffer

    File for the DmsObject. This will use the storeFileTemporarily-function and overwrite contentLocationUri-property.

    contentLocationUri?: string

    URL at which the file is temporarily stored in the DMS-App. See ... for more information.

    contentUri?: string

    URL from which file can be downloaded. Has to be a relative URL reachable within the tenant

    fileName?: string

    Name of the file including its file-ending

    properties?: { key: string; values: string[] }[]

    Properties

    Type Declaration

    • key: string

      Id of the property

    • values: string[]

      Value(s) - Single values must be given as an array of length 1

    repositoryId: string

    ID of the repository

    sourceId: string

    ID of the source. See Mapping for more information.