GET api/ERP/Jobs/JobTypeByTypeID?TypeID={TypeID}

Gets JobType by TypeID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
TypeID

Type ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Job Type

JobType
NameDescriptionTypeAdditional 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:
<JobType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects.ERP">
  <Description>sample string 2</Description>
  <EstmatedJobTime>1</EstmatedJobTime>
  <StatusPourType>1</StatusPourType>
  <System>true</System>
  <TypeID>1</TypeID>
  <TypeName>sample string 1</TypeName>
</JobType>