@dvelop-sdk
    Preparing search index...

    Function searchDmsObjects

    • Execute a search and returns the search-result. This result might be partial due to the defined pageSize-property. You can navigate pages with the getPreviousPage- and getNextPage-functions. If functions are undefined the page does not exist.

      import { searchDmsObjects } from "@dvelop-sdk/dms";

      const searchResult: SearchDmsObjectsResultPage = await searchDmsObjects({
      systemBaseUri: "https://steamwheedle-cartel.d-velop.cloud",
      authSessionId: "dQw4w9WgXcQ"
      },{
      repositoryId: "qnydFmqHuVo",
      sourceId: "/dms/r/qnydFmqHuVo/source",
      categories: ["TIfAkOBMf5A"],
      fulltext: "Ashenvale",
      properties: [{
      key: "AaGK-fj-BAM",
      values: ["unpaid"]
      }]
      });

      Parameters

      Returns Promise<SearchDmsObjectsResultPage>

    • Execute a search and returns the search-result. This result might be partial due to the defined pageSize-property. You can navigate pages with the getPreviousPage- and getNextPage-functions. If functions are undefined the page does not exist.

      import { searchDmsObjects } from "@dvelop-sdk/dms";

      const searchResult: SearchDmsObjectsResultPage = await searchDmsObjects({
      systemBaseUri: "https://steamwheedle-cartel.d-velop.cloud",
      authSessionId: "dQw4w9WgXcQ"
      },{
      repositoryId: "qnydFmqHuVo",
      sourceId: "/dms/r/qnydFmqHuVo/source",
      categories: ["TIfAkOBMf5A"],
      fulltext: "Ashenvale",
      properties: [{
      key: "AaGK-fj-BAM",
      values: ["unpaid"]
      }]
      });

      Type Parameters

      • T

      Parameters

      Returns Promise<T>