Skip to content

List patient allergies

Request

Retrieve all allergies for a patient including severity, reactions, 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/allergies?active=true&status=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Allergies retrieved successfully

Bodyapplication/json
allergiesArray of objects(AllergyDTO)

List of allergies

Response
{ "allergies": [ {} ] }