GET api/ERP/Jobs/GetAllJobTypesCBX

Gets all job types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Job types collection

Collection of 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
  },
  {
    "TypeID": 1,
    "TypeName": "sample string 1",
    "StatusPourType": 1,
    "EstmatedJobTime": 1.0,
    "Description": "sample string 2",
    "System": true
  }
]

application/xml, text/xml

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