GET api/Global/HealthCenters
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of HealthCenter| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| DelegateId | integer |
None. |
|
| Name | string |
None. |
|
| IsActive | boolean |
None. |
|
| IsEducation | boolean |
None. |
|
| IsIllinois | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"DelegateId": 2,
"Name": "sample string 3",
"IsActive": true,
"IsEducation": true,
"IsIllinois": true
},
{
"Id": 1,
"DelegateId": 2,
"Name": "sample string 3",
"IsActive": true,
"IsEducation": true,
"IsIllinois": true
}
]
application/xml, text/xml
Sample:
<ArrayOfHealthCenter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IFHC.Models">
<HealthCenter>
<DelegateId>2</DelegateId>
<Id>1</Id>
<IsActive>true</IsActive>
<IsEducation>true</IsEducation>
<IsIllinois>true</IsIllinois>
<Name>sample string 3</Name>
</HealthCenter>
<HealthCenter>
<DelegateId>2</DelegateId>
<Id>1</Id>
<IsActive>true</IsActive>
<IsEducation>true</IsEducation>
<IsIllinois>true</IsIllinois>
<Name>sample string 3</Name>
</HealthCenter>
</ArrayOfHealthCenter>