GET api/ERP/Jobs/GetAllJobTypesCBX
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of JobType| Name | Description | Type | Additional information |
|---|---|---|---|
| TypeID | integer |
None. |
|
| TypeName | string |
None. |
|
| StatusPourType | integer |
None. |
|
| EstmatedJobTime | decimal number |
None. |
|
| Description | string |
None. |
|
| System | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TypeID": 1,
"TypeName": "sample string 1",
"StatusPourType": 1,
"EstmatedJobTime": 1.0,
"Description": "sample string 2",
"System": true
},
{
"TypeID": 1,
"TypeName": "sample string 1",
"StatusPourType": 1,
"EstmatedJobTime": 1.0,
"Description": "sample string 2",
"System": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDataTypes.JobType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.ERP">
<DataTypes.JobType>
<Description>sample string 2</Description>
<EstmatedJobTime>1</EstmatedJobTime>
<StatusPourType>1</StatusPourType>
<System>true</System>
<TypeID>1</TypeID>
<TypeName>sample string 1</TypeName>
</DataTypes.JobType>
<DataTypes.JobType>
<Description>sample string 2</Description>
<EstmatedJobTime>1</EstmatedJobTime>
<StatusPourType>1</StatusPourType>
<System>true</System>
<TypeID>1</TypeID>
<TypeName>sample string 1</TypeName>
</DataTypes.JobType>
</ArrayOfDataTypes.JobType>