deleteDoc

delete document

Overview

Parameters:

  • document token- String

Return:

To delete a document we will need:

  • set your apiToken;

  • document`s token.

  • call the method;

How to use:

Save your apiToken:

const apiToken: string = "YOUR TOKEN";

Set your original document token:

const docToken: string = "ORIGINAL DOCUMENT TOKEN";

Finally, clal the deleteDoc method to get the DocsResponse arrow-up-rightor an error message

Example

Last updated