GET api/entity/person/staff/GetStaffProgramAreas
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
WebMethodResultOfListOfProgramArea| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Collection of ProgramArea |
None. |
|
| Success | boolean |
None. |
|
| ErrorText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": [
{
"Id": 1,
"Name": "sample string 2",
"IsMedical": true
},
{
"Id": 1,
"Name": "sample string 2",
"IsMedical": true
}
],
"Success": true,
"ErrorText": "sample string 2"
}
application/javascript
Sample:
{"Result":[{"Id":1,"Name":"sample string 2","IsMedical":true},{"Id":1,"Name":"sample string 2","IsMedical":true}],"Success":true,"ErrorText":"sample string 2"}
application/xml, text/xml
Sample:
<WebMethodResultOfListOfProgramArea xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Success>true</Success>
<ErrorText>sample string 2</ErrorText>
<Result>
<ProgramArea>
<Id>1</Id>
<Name>sample string 2</Name>
<IsMedical>true</IsMedical>
</ProgramArea>
<ProgramArea>
<Id>1</Id>
<Name>sample string 2</Name>
<IsMedical>true</IsMedical>
</ProgramArea>
</Result>
</WebMethodResultOfListOfProgramArea>