deleteSigner
Excluir signatário
Visão geral
Uso:
const apiToken: string = "SEU TOKEN";const signerToken: string = "TOKEN DO SIGNATÁRIO";Exemplo completo:
Last updated
async function exempleDeleteSigner() {
try {
response: string = new SignerRequest(apiToken).deleteSigner(signerToken);
console.log(response);
}
catch(Err) {
console.log(Err);
}
}import SignerRequest from "sdk-node-typescript-zapsign/src/signer/SignerRequest";
const apiToken: string = "SEU TOKEN";
const signerToken: string = "TOKEN DO SIGNATÁRIO";
async function exempleDeleteSigner() {
try {
response: string = new SignerRequest(apiToken).deleteSigner(signerToken);
console.log(response);
}
catch(Err) {
console.log(Err);
}
}