Clinician
Patient
Get Patient

Get Patient

Retrieve detailed patient information associated with a customer. This includes the patient’s personal details, whether the profile has been validated, and any encounter notes linked to orders.

Overview

  • Method: GET
  • Path: /clinician/patient/get-patient
  • Tags: clinician

Use Cases

  • View patient demographics (name, DOB, contact details, address).
  • Check if the patient record has been validated.
  • Review encounter notes tied to a specific order or across all orders.

Parameters

orderId (query)

  • Type: string
  • Required: No
  • Description: orderId query parameter

Request Body

No request body required.

Responses

200

Successful response

Content Type: application/json

{
  "patient": "string",
  "firstName": "string",
  "lastName": "string",
  "dateOfBirth": "string",
  "gender": "string",
  "phone": "string",
  "email": "string",
  "address": "string",
  "address2": "string",
  "city": "string",
  "state": "string",
  "postalCode": "string",
  "country": "string"
}

400

Bad Request

Content Type: application/json

{
  "error": "string",
  "details": [
    {}
  ],
  "message": "string"
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X GET \
  https://api.pillexa.com/clinician/patient/get-patient \
  -H "Content-Type: application/json" \