GET PlanCare2Api/Clients/{clientId}/AllergyInformation

Get allergy information of the client

Deprecated (unavailable from 21.01.1P), please use the PlanCare2Api/MedicalAllergyIntolerance?relationId={relationId}&registrationDateTimeFrom={registrationDateTimeFrom}&registrationDateTimeUntil={registrationDateTimeUntil} endpoint

Request Information

URI Parameters

Name Description Type Additional information
clientId

internal client identifier

integer

Required

Body Parameters

None.

Response Information

Resource Description

List of allergy information

Collection of AllergyInformation
Name Description Type Additional information
Allergy

The allergy itself

string

-

Reaction

The reaction to the allergy

string

-

Type

The type of allergy

string

-

SeverityLevel

The severity level of the allergy

string

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Allergy": "sample string 1",
    "Reaction": "sample string 2",
    "Type": "sample string 3",
    "SeverityLevel": "sample string 4"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAllergyInformation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Client">
  <AllergyInformation>
    <Allergy>sample string 1</Allergy>
    <Reaction>sample string 2</Reaction>
    <SeverityLevel>sample string 4</SeverityLevel>
    <Type>sample string 3</Type>
  </AllergyInformation>
  <AllergyInformation>
    <Allergy>sample string 1</Allergy>
    <Reaction>sample string 2</Reaction>
    <SeverityLevel>sample string 4</SeverityLevel>
    <Type>sample string 3</Type>
  </AllergyInformation>
</ArrayOfAllergyInformation>