Patients
At least one patient is required for an appointment to be valid
Create a patient
POST
https://api.daslab.app/patients
Note: You can add the patient to the appointment as you add it.
Headers
x-api-key
string
Request Body
data
object
{ "email": "myemail@gmail.com", "phoneNumber": "+441234567", "birthDate": "26-11-1987", "gender": "male", "addressLine1": "First line", "addressLine2": "Second line", "addressPostcode": "10000", "addressCity": "Berlin", "addressCountry": "DE", "passportNumber": "PASSPORTID", "insuranceCompany": "", "insuranceNumber": "", "notes": "", "bloodThinners": false, "covidSymptoms": true }
lastName
string
firstName
string
addToAppointment
number
The appointmentId you want to add at the same time
Get a patient data
GET
https://api.daslab.app/patients/:id
Retrieve patients details, useful since little data is provided over the webhooks. All access to personal data is logged.
Path Parameters
id
string
Patient id
Headers
x-api-key
string
Last updated
Was this helpful?