GET api/People/employmentstatuses
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of EmploymentStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Description | string |
None. |
|
| EnDescription | string |
None. |
|
| IsActive | boolean |
None. |
|
| AccountID | integer |
None. |
|
| UserName | string |
None. |
|
| LastChanged | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Description": "sample string 2",
"EnDescription": "samplestring2",
"IsActive": true,
"AccountID": 4,
"UserName": "sample string 5",
"LastChanged": "2025-12-20T16:57:48.2649883Z"
},
{
"ID": 1,
"Description": "sample string 2",
"EnDescription": "samplestring2",
"IsActive": true,
"AccountID": 4,
"UserName": "sample string 5",
"LastChanged": "2025-12-20T16:57:48.2649883Z"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmploymentStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
<EmploymentStatus>
<AccountID>4</AccountID>
<Description>sample string 2</Description>
<ID>1</ID>
<IsActive>true</IsActive>
<LastChanged>2025-12-20T16:57:48.2649883+00:00</LastChanged>
<UserName>sample string 5</UserName>
</EmploymentStatus>
<EmploymentStatus>
<AccountID>4</AccountID>
<Description>sample string 2</Description>
<ID>1</ID>
<IsActive>true</IsActive>
<LastChanged>2025-12-20T16:57:48.2649883+00:00</LastChanged>
<UserName>sample string 5</UserName>
</EmploymentStatus>
</ArrayOfEmploymentStatus>