Skip to content

List patient problems/diagnoses

Request

Retrieve all problems (diagnoses) for a patient including ICD-10 codes and status.

Security
PartnerApiKey and PartnerOAuth
Path
patientIdinteger, (int64)required

Patient ID

Example:67890
accountIdinteger, (int64)required

Account identifier

Query
activeboolean

Filter by active status. If not specified, returns both active and inactive appointment types.

Enum:truefalse
statusstring(?i)ACTIVE|RESOLVED|UNKNOWN

Filter by status (ACTIVE, RESOLVED, UNKNOWN)

curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/patient/67890/health-profile/problems?active=true&status=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Problems retrieved successfully

Bodyapplication/json
problemsArray of objects(ProblemDTO)

List of problems

Response
{ "problems": [ {} ] }