Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dentolize.com/llms.txt

Use this file to discover all available pages before exploring further.

The integration normalizes patient creation data before sending it downstream.
FieldTypeDetails
idstringPrimary identifier from the originating payload.
namestringCombined firstName and lastName.
file_nostringPatient chart number (payload.patientId).
reference_nostringExternal reference (payload.referenceId).
nationalIdstringNational identifier.
detailsstringOptional free-form details about the patient.
phonestringPhone number segment before the _ separator, if provided.
mobilestringPhone number segment after the _ separator, if provided.
countrystringCountry associated with the record.
addressstringStreet address line.
branch_dataobjectBranch context (id, name) when available.
{
  "id": "pat_123",
  "name": "Jane Doe",
  "file_no": "PT-00017",
  "reference_no": "REF-883",
  "nationalId": "1234567890",
  "details": "Primary contact for the family",
  "phone": "+1",
  "mobile": "5551234567",
  "country": "USA",
  "address": "42 Ocean Avenue",
  "branch_data": {
    "id": "br_01",
    "name": "Main Branch"
  }
}