GET api/Master/GetAllJobTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of JobType
NameDescriptionTypeAdditional information
JobTypeId

integer

None.

JobTypeName

string

None.

IsActive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "JobTypeId": 1,
    "JobTypeName": "sample string 2",
    "IsActive": true
  },
  {
    "JobTypeId": 1,
    "JobTypeName": "sample string 2",
    "IsActive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfJobType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AGS.Entities.Models">
  <JobType>
    <IsActive>true</IsActive>
    <JobTypeId>1</JobTypeId>
    <JobTypeName>sample string 2</JobTypeName>
  </JobType>
  <JobType>
    <IsActive>true</IsActive>
    <JobTypeId>1</JobTypeId>
    <JobTypeName>sample string 2</JobTypeName>
  </JobType>
</ArrayOfJobType>