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

Get Templates

Get a list of all the practice templates

Get a list of all available templates

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

Path Parameters

Name
Type
Description

practiceId

number

Practice Id

Response

[
  {
    id: number;
    practiceId: number;
    userId: number;
    name: string;
    fields: string;
    documentUuid: string;
    createdAt: string;
    updatedAt: string;
    sentToSign: boolean;
    isTemplate: boolean;
    subject: string;
    message: string;
    signed: boolean;
    signedAt: Date;
    signOrder: boolean;
    signersOrder: number[];
    pagesOrder: string[];
    signers: [
      {
        id: number;
        documentId: number;
        signerName: string;
        signerEmail: string;
        signerRole: string;
        signerUuid: string;
        isRecipient: boolean;
        createdAt: Date;
        signed: boolean;
        declined: boolean;
        declinedAt: Date;
        signedAt: Date;
        recordId: number;
      }
    ];
  }
]
"Error: Wrong Credentials"
PreviousDocumentsNextSend Template To Sign

Last updated 7 months ago