GET api/ERP/Jobs/GetAllDispatchersCBX
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of EmployeeType| Name | Description | Type | Additional information |
|---|---|---|---|
| EmpID | integer |
None. |
|
| FullName | string |
None. |
|
| LastName | string |
None. |
|
| FirstName | string |
None. |
|
| IsInactive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EmpID": 1,
"FullName": "sample string 2",
"LastName": "sample string 3",
"FirstName": "sample string 4",
"IsInactive": true
},
{
"EmpID": 1,
"FullName": "sample string 2",
"LastName": "sample string 3",
"FirstName": "sample string 4",
"IsInactive": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDataTypes.EmployeeType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.ERP">
<DataTypes.EmployeeType>
<EmpID>1</EmpID>
<FirstName>sample string 4</FirstName>
<FullName>sample string 2</FullName>
<IsInactive>true</IsInactive>
<LastName>sample string 3</LastName>
</DataTypes.EmployeeType>
<DataTypes.EmployeeType>
<EmpID>1</EmpID>
<FirstName>sample string 4</FirstName>
<FullName>sample string 2</FullName>
<IsInactive>true</IsInactive>
<LastName>sample string 3</LastName>
</DataTypes.EmployeeType>
</ArrayOfDataTypes.EmployeeType>