v1

latestOpenAPI 3.0.0MIT2026-07-22275773.2 KB
Legacy-Patients

Create Patient

This API is still available but no longer supported and is planned for deprecation in a future release; users should transition to the Create Verifications API.

post/v1/patients

Request body

firstNamestring required

The patient's first name

lastNamestring required

The patient's last name

dateOfBirthstring required

The patient's birth date in MM/DD/YYYY format

state'AK' | 'AL' | 'AR' | 'AZ' | 'CA' | 'CO' | 'CT' | 'DC' | 'DE' | 'FL' | 'GA' | 'HI' | 'IA' | 'ID' | 'IL' | 'IN' | 'KS' | 'KY' | 'LA' | 'MA' | 'MD' | 'ME' | 'MI' | 'MN' | 'MO' | 'MS' | 'MT' | 'NC' | 'ND' | 'NE' | 'NH' | 'NJ' | 'NM' | 'NV' | 'NY' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VA' | 'VT' | 'WA' | 'WI' | 'WV' | 'WY' required

Two-letter US state code

Example request

{
  "firstName": "John",
  "lastName": "Doe",
  "dateOfBirth": "09/20/2023",
  "state": "CA"
}

Response

A patient ID

patientIdstring uuid

The Sohar ID for the patient

Example response

{
  "patientId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}