GET
/
v1
/
patients
curl --request GET \
  --url https://app.enzo.health/api/v1/patients \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "firstname": "<string>",
      "middlename": "<string>",
      "lastname": "<string>",
      "email": "<string>",
      "suffix": "<string>",
      "image": "<string>",
      "dob": "<string>",
      "deceased": true,
      "sex": "<string>",
      "fmrn": "<string>",
      "omrn": "<string>",
      "ssn": "<string>",
      "address": "<string>",
      "city": "<string>",
      "state": "<string>",
      "stateZIP": "<string>",
      "county": "<string>",
      "aptNumber": "<string>",
      "phone": "<string>",
      "homePhone": "<string>",
      "workPhone": "<string>",
      "cellPhone": "<string>",
      "fax": "<string>",
      "language": "<string>",
      "locationType": "HOME",
      "residenceType": "HOME",
      "residenceName": "<string>",
      "timezone": "EST",
      "physician": "<string>",
      "admissionSource": "NON_HEALTH_CARE_FACILITY",
      "insuranceProvider": "<string>",
      "medicareNumber": "<string>",
      "medicaidNumber": "<string>",
      "creationMode": "MANUAL",
      "ingestionStatus": "NOT_STARTED",
      "ingestionPipelineId": "<string>",
      "record": "CAREGIVER",
      "stage": "LEAD",
      "organizationId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "surgeContactId": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

organizationId
string
limit
number
default:20
Required range: 1 <= x <= 100
cursor
string | null

Response

200
application/json

Successful response

The response is of type object.