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-11-04T03:52:11.5684646Z"
  },
  {
    "ID": 1,
    "Description": "sample string 2",
    "EnDescription": "samplestring2",
    "IsActive": true,
    "AccountID": 4,
    "UserName": "sample string 5",
    "LastChanged": "2025-11-04T03:52:11.5684646Z"
  }
]
        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-11-04T03:52:11.5684646+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-11-04T03:52:11.5684646+00:00</LastChanged>
    <UserName>sample string 5</UserName>
  </EmploymentStatus>
</ArrayOfEmploymentStatus>