FormDr
  • Home
  • Getting Started
    • Quick Start
  • Documentation
    • Access Token
      • Using the Refresh Token
    • Get Practices
    • Get Forms List
    • Get Form by ID
    • Find Patient
    • Submissions
      • Get Submission
      • Create Submission
      • Update Submission
      • Delete Submission
      • List Submissions
    • Files
      • Get file
      • Upload file
      • PDF
    • Documents
      • Get Templates
      • Send Template To Sign
      • Get Document Submissions
      • Get Document By Id
      • Download Document PDF
  • Webhook
Powered by GitBook
On this page
  1. Documentation
  2. Documents

Send Template To Sign

Sends a template for the provided signers and recipients

POST https://api.formdr.com/api/v1/practice/{practiceId}/document/templates/{templateId}

Path Parameters

Name
Type
Description

practiceId

number

Practice Id

templateId

number

Template Id

Body Parameters

{
  signers: [
    {
      signerName: string;
      signerEmail: string;
      signerRole: string;
    }
  ];
  additionalRecipient: [ // optional
    {
      signerName: string;
      signerEmail: string;
    }
  ];
  messageToSigners: string; // optional
}

Response

[
  {
    id: number;
    practiceId: number;
    userId: number;
    isTemplate: false;
    name: string;
    documentUuid: string;
    createdAt: string;
    subject: string;
    message: string;
    fromTemplateId: number;
    sentToSign: boolean;
    fields: [
      {
        listId: string;
        label: string;
        fieldType: string;
        type: string;
        width: number;
        height: number;
        left: number;
        right: number;
        top: number;
        signerId: number;
        id: string;
        name: string;
      }
    ];
    updatedAt: null;
    signed: null;
    signedAt: null;
    signOrder: null;
    signersOrder: null;
    pagesOrder: null;
  }
]
"Error: Wrong Credentials"
PreviousGet TemplatesNextGet Document Submissions

Last updated 7 months ago