Get all notes for an existing DmsObject.
import { getDmsObjectNotes } from "@dvelop-sdk/dms";
const notes: DmsObjectNote[] = getDmsObjectNotes({
systemBaseUri: "https://steamwheedle-cartel.d-velop.cloud",
authSessionId: "dQw4w9WgXcQ"
}, {
repositoryId: "qnydFmqHuVo",
dmsObjectId: "GDYQ3PJKrT8"
});
notes.forEach(n => {
console.log(`${n.creator.displayName}: "${n.text}"`);
});
Get all notes for an existing DmsObject.