GET api/PatientAllergyUpdateAllergyReactions/search?allergyId={allergyId}&name={name}&page={page}&itemsPerPage={itemsPerPage}

Returns a list of reactions.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
allergyId

Unique ID of allergy.

integer

Required

name

Name of the allergy reaction.

string

Default value is

page

Page number requested (search results are paginated).

integer

Default value is 1

itemsPerPage

Items to return on each page. See page parameter above.

integer

Default value is 10

Body Parameters

None.

Response Information

Resource Description

Collection of IdNamePairModel
NameDescriptionTypeAdditional information
Id

Unique ID of the model.

integer

None.

Name

Name of the model.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2"
  },
  {
    "Id": 1,
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfIdNamePairModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models">
  <IdNamePairModel>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </IdNamePairModel>
  <IdNamePairModel>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </IdNamePairModel>
</ArrayOfIdNamePairModel>