Clinician
Patient
Get Customer Info

Get Customer Info

Get customer info for a given customer ID.

Overview

  • Method: GET
  • Path: /clinician/patient/get-customer-info/<customerId>
  • Tags: clinician

Parameters

No parameters required.

Request Body

No request body required.

Responses

200

Successful response

Content Type: application/json

{
  "id": "string",
  "email": "user@example.com",
  "firstName": "string",
  "lastName": "string",
  "dateOfBirth": "string",
  "phone": "string",
  "address": "string",
  "city": "string",
  "state": "string",
  "postalCode": "string",
  "country": "string"
}

400

Bad Request

Content Type: application/json

{}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

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