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"]
}]
});
Execute a search and returns the search-result. This result might be partial due to the defined
pageSize-property. You can navigate pages with thegetPreviousPage- andgetNextPage-functions. If functions are undefined the page does not exist.