GET api/EmployerCharities
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of EmployerCharity| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| EmployerId | integer |
None. |
|
| CharityNumber | string |
None. |
|
| CGID | integer |
None. |
|
| Deleted | boolean |
None. |
|
| EmployerGuid | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"EmployerId": 2,
"CharityNumber": "sample string 3",
"CGID": 4,
"Deleted": true,
"EmployerGuid": "ee22bde9-c5ae-4dbe-8dda-3e19198ff4ea"
},
{
"Id": 1,
"EmployerId": 2,
"CharityNumber": "sample string 3",
"CGID": 4,
"Deleted": true,
"EmployerGuid": "ee22bde9-c5ae-4dbe-8dda-3e19198ff4ea"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmployerCharity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CGResourcesAPI.Models">
<EmployerCharity>
<CGID>4</CGID>
<CharityNumber>sample string 3</CharityNumber>
<Deleted>true</Deleted>
<EmployerGuid>ee22bde9-c5ae-4dbe-8dda-3e19198ff4ea</EmployerGuid>
<EmployerId>2</EmployerId>
<Id>1</Id>
</EmployerCharity>
<EmployerCharity>
<CGID>4</CGID>
<CharityNumber>sample string 3</CharityNumber>
<Deleted>true</Deleted>
<EmployerGuid>ee22bde9-c5ae-4dbe-8dda-3e19198ff4ea</EmployerGuid>
<EmployerId>2</EmployerId>
<Id>1</Id>
</EmployerCharity>
</ArrayOfEmployerCharity>