GET api/PatientRaces/search?originalRaceId={originalRaceId}&addEmptyItem={addEmptyItem}&emptyItemText={emptyItemText}&page={page}&itemsPerPage={itemsPerPage}
Returns a list of races.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| originalRaceId |
Original race ID. |
integer |
None. |
| addEmptyItem |
Indicates if an empty item be added in the list. |
boolean |
Default value is False |
| emptyItemText |
Text of the empty item |
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 PatientRaceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Unique ID of the race. |
integer |
None. |
| Name |
Name of the race. |
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:
<ArrayOfPatientRaceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientDemographics">
<PatientRaceModel>
<Id>1</Id>
<Name>sample string 2</Name>
</PatientRaceModel>
<PatientRaceModel>
<Id>1</Id>
<Name>sample string 2</Name>
</PatientRaceModel>
</ArrayOfPatientRaceModel>