Use Case

Automate Patient Consent Forms

Send patient consent forms, HIPAA authorizations, and intake documents for e-signature. Streamline healthcare workflows.

The problem

Healthcare providers need patients to sign consent forms, HIPAA authorisations, and intake documents before every appointment. Paper forms slow down patient intake and create storage burdens.

The solution

Send consent forms by email before appointments. Patients sign on their phone in the waiting room. Signed forms are delivered digitally — no scanning, no filing.

Example document template

Markdown template
# Patient Consent Form

**Patient:** {{patientName}}
**Provider:** {{providerName}}

## Procedure
{{procedureDescription}}

## Risks
{{riskDisclosure}}

## Consent
I understand the above and consent to proceed.

Replace the {{variables}} with your application data and send via API.

Send it with one API call

curl
curl -X POST https://signb.ee/api/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "YOUR_RENDERED_MARKDOWN",
    "senderName": "Your Name",
    "senderEmail": "you@company.com",
    "recipientName": "Recipient Name",
    "recipientEmail": "recipient@email.com"
  }'

Why this approach works

  • Patients sign before arriving
  • No paper filing needed
  • SHA-256 certificate for compliance
  • Mobile-friendly — sign in the waiting room
  • Works with any EHR system via API

Related resources

Try Signbee — free, no credit card.