Skip to content

Get problem by ID

Request

Retrieve detailed information about a specific problem/diagnosis. Scoped by account.

Security
PartnerApiKey and PartnerOAuth
Path
accountIdinteger, (int64)required

Account identifier

problemIdinteger, (int64)required

Problem ID

accountIdinteger, (int64)required

Account identifier

curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/health-profile/problems/{problemId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Problem found and returned successfully

Bodyapplication/json
activeboolean

Whether this record is active

Example:true
commentstring

Additional comments

Example:"Diet controlled, A1c 6.2%"
createdAtstring, (date-time)

Creation timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
createdBystring

Created by (staff name)

Example:"Dr. Jane Smith"
diagnosisCodestring

Diagnosis code (ICD-10)

Example:"E11.9"
diagnosisTextstring

Diagnosis description

Example:"Type 2 diabetes mellitus without complications"
idinteger, (int64)

Unique problem identifier

Example:12345
patientIdinteger, (int64)

Patient ID

Example:67890
severitystring

Severity level

Enum:"SEVERE""MODERATE""MILD""UNKNOWN"
Example:"MODERATE"
statusstring

Problem status

Enum:"ACTIVE""RESOLVED""UNKNOWN"
Example:"ACTIVE"
updatedAtstring, (date-time)

Last update timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
updatedBystring

Last updated by (staff name)

Example:"Dr. Jane Smith"
Response
{ "active": true, "comment": "Diet controlled, A1c 6.2%", "createdAt": "2025-01-15T14:00:00Z", "createdBy": "Dr. Jane Smith", "diagnosisCode": "E11.9", "diagnosisText": "Type 2 diabetes mellitus without complications", "id": 12345, "patientId": 67890, "severity": "MODERATE", "status": "ACTIVE", "updatedAt": "2025-01-15T14:00:00Z", "updatedBy": "Dr. Jane Smith" }