> ## 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.

# New Patient

> Fields forwarded when a patient record is created.

The integration normalizes patient creation data before sending it downstream.

| Field         | Type   | Details                                                     |
| ------------- | ------ | ----------------------------------------------------------- |
| id            | string | Primary identifier from the originating payload.            |
| name          | string | Combined `firstName` and `lastName`.                        |
| file\_no      | string | Patient chart number (`payload.patientId`).                 |
| reference\_no | string | External reference (`payload.referenceId`).                 |
| nationalId    | string | National identifier.                                        |
| details       | string | Optional free-form details about the patient.               |
| phone         | string | Phone number segment before the `_` separator, if provided. |
| mobile        | string | Phone number segment after the `_` separator, if provided.  |
| country       | string | Country associated with the record.                         |
| address       | string | Street address line.                                        |
| branch\_data  | object | Branch context (`id`, `name`) when available.               |

```json theme={null}
{
  "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"
  }
}
```
