GET api/Job/GetAllJobComponents
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of JobComponent| Name | Description | Type | Additional information |
|---|---|---|---|
| JobComponentCode | integer |
None. |
|
| JobDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"JobComponentCode": 1,
"JobDescription": "sample string 2"
},
{
"JobComponentCode": 1,
"JobDescription": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfJobComponent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERPAPIV1.Models">
<JobComponent>
<JobComponentCode>1</JobComponentCode>
<JobDescription>sample string 2</JobDescription>
</JobComponent>
<JobComponent>
<JobComponentCode>1</JobComponentCode>
<JobDescription>sample string 2</JobDescription>
</JobComponent>
</ArrayOfJobComponent>