detailDoc
detail the document
Overview
Parameters:
Document`s token - string
Return:
docResponse - In case of success
Exception - In case of failure
To create this 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 the original document`s token:
const docToken: string = "ORIGINAL DOCUMENT TOKEN";
Call the detailDoc method to get the DocResponse return or an error message:
async function exempleDetailDoc() {
try {
docResponse: DocResponse = await new DocRequests(apiToken).detailDoc(docToken);
jsonDocResponse: string = new JsonConverter().docResponseToJson(docResponse);
console.log(jsonDocResponse);
} catch(Err) {
console.log(Err);
}
}
Example:
import DocRequests from "sdk-node-typescript-zapsign/src/docs/DocRequests";
import { JsonConverter } from "sdk-node-typescript-zapsign/src/services/JsonConverter";
const apiToken: string = "YOUR TOKEN";
const docToken: string = "ORIGINAL DOCUMENT TOKEN";
async function exempleDetailDoc() {
try {
const docResponse: DocResponse = await new DocRequests(apiToken).detailDoc(docToken);
const jsonDocResponse: string = new JsonConverter().docResponseToJson(docResponse);
console.log(jsonDocResponse);
} catch(Err) {
console.log(Err);
}
}
Was this helpful?