GET api/ERP/Jobs/GetAllOperatorsCBX

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of OperatorType
NameDescriptionTypeAdditional information
IsTemp

boolean

None.

EmpID

integer

None.

FullName

string

None.

LastName

string

None.

FirstName

string

None.

IsInactive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IsTemp": true,
    "EmpID": 2,
    "FullName": "sample string 3",
    "LastName": "sample string 4",
    "FirstName": "sample string 5",
    "IsInactive": true
  },
  {
    "IsTemp": true,
    "EmpID": 2,
    "FullName": "sample string 3",
    "LastName": "sample string 4",
    "FirstName": "sample string 5",
    "IsInactive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfDataTypes.OperatorType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.ERP">
  <DataTypes.OperatorType>
    <EmpID>2</EmpID>
    <FirstName>sample string 5</FirstName>
    <FullName>sample string 3</FullName>
    <IsInactive>true</IsInactive>
    <LastName>sample string 4</LastName>
    <IsTemp>true</IsTemp>
  </DataTypes.OperatorType>
  <DataTypes.OperatorType>
    <EmpID>2</EmpID>
    <FirstName>sample string 5</FirstName>
    <FullName>sample string 3</FullName>
    <IsInactive>true</IsInactive>
    <LastName>sample string 4</LastName>
    <IsTemp>true</IsTemp>
  </DataTypes.OperatorType>
</ArrayOfDataTypes.OperatorType>