GET api/ERP/Jobs/GetJobCExtraSystemList?JobID={JobID}
Get job crew list
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
JobID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Job crew list
Collection of ExtraSystemTypeName | Description | Type | Additional information |
---|---|---|---|
ItemID | integer |
None. |
|
JobID | integer |
None. |
|
Description | string |
None. |
|
Quantity | decimal number |
None. |
|
Price | decimal number |
None. |
|
IsTaxable | boolean |
None. |
|
ClassID | integer |
None. |
|
IsBillable | boolean |
None. |
|
IncludePriceOnPrint | boolean |
None. |
|
PartID | integer |
None. |
|
LineItemID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ItemID": 1, "JobID": 1, "Description": "sample string 1", "Quantity": 1.0, "Price": 1.0, "IsTaxable": true, "ClassID": 1, "IsBillable": true, "IncludePriceOnPrint": true, "PartID": 1, "LineItemID": 1 }, { "ItemID": 1, "JobID": 1, "Description": "sample string 1", "Quantity": 1.0, "Price": 1.0, "IsTaxable": true, "ClassID": 1, "IsBillable": true, "IncludePriceOnPrint": true, "PartID": 1, "LineItemID": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfExtraSystemType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects.ERP"> <ExtraSystemType> <ClassID>1</ClassID> <Description>sample string 1</Description> <IncludePriceOnPrint>true</IncludePriceOnPrint> <IsBillable>true</IsBillable> <IsTaxable>true</IsTaxable> <ItemID>1</ItemID> <JobID>1</JobID> <LineItemID>1</LineItemID> <PartID>1</PartID> <Price>1</Price> <Quantity>1</Quantity> </ExtraSystemType> <ExtraSystemType> <ClassID>1</ClassID> <Description>sample string 1</Description> <IncludePriceOnPrint>true</IncludePriceOnPrint> <IsBillable>true</IsBillable> <IsTaxable>true</IsTaxable> <ItemID>1</ItemID> <JobID>1</JobID> <LineItemID>1</LineItemID> <PartID>1</PartID> <Price>1</Price> <Quantity>1</Quantity> </ExtraSystemType> </ArrayOfExtraSystemType>