GET
/
v1
/
patients
/
{patientId}
curl --request GET \
  --url https://api.soharhealth.com/v1/patients/{patientId} \
  --header 'Authorization: Bearer <token>'
{
  "patientId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "firstName": "John",
  "lastName": "Doe",
  "dateOfBirth": "09/20/2023",
  "state": "CA",
  "address": "1 BROADWAY, LOS ANGELES, CA 90210",
  "created": "2024-01-01T12:00:00.000Z",
  "updated": "2024-01-01T12:00:00.000Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

A patient

The response is of type object.