Docs
Request

Request

Get your documents signed seamlessly from anywhere in the world.

What is a request?

Request allows you to customize document and send to a user for signing.

Request is a core feature that lets document owners customize and send documents for signature. With this feature, users can create and edit their documents, and easily send them to the intended recipients. After the recipient signs the document, the owner receives a signed copy with a QR code that embeds the e-Signature for better traceability and verification.

How to get all your requests

import {createSession} from '@usedigisign/node-sdk';
 
async function main() {
  try {
    const session = await createSession({
      key: "ds_1234567890",
      environment: SessionEnvironment.SANDBOX, // SessionEnvironment.SANDBOX or SessionEnvironment.PRODUCTION
    });
    const workspaceId = "ws_1234567890"
 
    await session.workspace(workspaceId).list()
  } catch (error) {
    console.error(error);
  }
};
 
main()