Skip to main content

Get Patient

GET /patients/{id}

Returns a single patient by UUID.

Scope required: patient.read

Path Parameters

ParameterDescription
idPatient UUID

Request

GET /api/developer/v1/patients/018f1a2b-3c4d-7e5f-a6b7-c8d9e0f1a2b3
Authorization: Developer wc_live_…:wcs_live_…

Response 200

{
"data": {
"id": "018f1a2b-3c4d-7e5f-a6b7-c8d9e0f1a2b3",
"full_name": "Ali Yılmaz",
"first_name": "Ali",
"last_name": "Yılmaz",
"date_of_birth": "1985-06-15",
"gender": "male",
"phone_number": "+905321234567",
"email_address": "ali@example.com",
"created_at": "2025-03-01T10:00:00+03:00"
}
}

Error 404

{
"error": "NOT_FOUND",
"message": "errors.developer_api.patient_not_found"
}