GET api/ERP/Jobs/GetAllOperatorsCBX

Gets all operators

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Operator collection

Collection of OperatorType
NameDescriptionTypeAdditional information
IsTemp

boolean

None.

EmpID

integer

None.

FullName

string

None.

LastName

string

None.

FirstName

string

None.

IsInactive

boolean

None.

Status

integer

None.

Sort

integer

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,
    "Status": 1,
    "Sort": 1
  },
  {
    "IsTemp": true,
    "EmpID": 2,
    "FullName": "sample string 3",
    "LastName": "sample string 4",
    "FirstName": "sample string 5",
    "IsInactive": true,
    "Status": 1,
    "Sort": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfOperatorType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects.ERP">
  <OperatorType>
    <EmpID>2</EmpID>
    <FirstName>sample string 5</FirstName>
    <FullName>sample string 3</FullName>
    <IsInactive>true</IsInactive>
    <LastName>sample string 4</LastName>
    <Sort>1</Sort>
    <Status>1</Status>
    <IsTemp>true</IsTemp>
  </OperatorType>
  <OperatorType>
    <EmpID>2</EmpID>
    <FirstName>sample string 5</FirstName>
    <FullName>sample string 3</FullName>
    <IsInactive>true</IsInactive>
    <LastName>sample string 4</LastName>
    <Sort>1</Sort>
    <Status>1</Status>
    <IsTemp>true</IsTemp>
  </OperatorType>
</ArrayOfOperatorType>