Skip to content

Commit fbf10b9

Browse files
Update getBookmarkByPathAndShow.js
1 parent f377cb0 commit fbf10b9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

UsesCases/Bookmarks/get/getBookmarkByPathAndShow.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
// 6. Perform some action after successful retrieving the Bookmark from document
66
// All values of variables starting with "YOUR_****" should be replaced by real user values
77

8-
import credentials from "../../../../Credentials/credentials.json" with { type: "json" };
9-
import fs from "node:fs/promises";
8+
import credentials from "credentials.json" with { type: "json" }; // json-file in this format: { "id": "*****", "key": "*******" }
9+
import fs from 'node:fs/promises';
1010
import path from "node:path";
11-
import { PdfApi } from "../../../src/api/api.js";
11+
import { PdfApi } from "asposepdfcloud";
1212

1313
const configParams = {
1414
LOCAL_FOLDER: "C:\\Samples\\",
@@ -44,4 +44,4 @@ async function main() {
4444
}
4545
}
4646

47-
main();
47+
main();

0 commit comments

Comments
 (0)