Hello,
Can someon please assist me with the doc_not_found error that I am having?
I have retrieved the doc id using fileAlphaGetMetaData.
I am attempting to update a .paper file with a table row.
Here is my code:
dbx.paperDocsUpdate({
doc_id: "{id}",
doc_update_policy: "append",
revision: 18,
import_format: "html",
contents: "<td>Test</td><td>Test02</td><td>Test03</td>"
}).then(() => resolve()).catch((err) => reject(err))});
Thank you