GET api/lookUp/employedstatus

Looks up employed status.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ERP.Api.Models.CustomerPortal.EmployedStatuses
NameDescriptionTypeAdditional information
EmployedStatusId

Gets or sets the id.

integer

None.

EmployedStatusLabel

Gets or sets the label.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "employedStatusId": 1,
    "employedStatusLabel": "sample string 2"
  },
  {
    "employedStatusId": 1,
    "employedStatusLabel": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEmployedStatuses xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERP.Api.Models.CustomerPortal">
  <EmployedStatuses>
    <EmployedStatusId>1</EmployedStatusId>
    <EmployedStatusLabel>sample string 2</EmployedStatusLabel>
  </EmployedStatuses>
  <EmployedStatuses>
    <EmployedStatusId>1</EmployedStatusId>
    <EmployedStatusLabel>sample string 2</EmployedStatusLabel>
  </EmployedStatuses>
</ArrayOfEmployedStatuses>