GET api/ERP/Jobs/JobTypeByTypeID?TypeID={TypeID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| TypeID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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
}
application/xml, text/xml
Sample:
<DataTypes.JobType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.ERP"> <Description>sample string 2</Description> <EstmatedJobTime>1</EstmatedJobTime> <StatusPourType>1</StatusPourType> <System>true</System> <TypeID>1</TypeID> <TypeName>sample string 1</TypeName> </DataTypes.JobType>