POST api/Engineer/GetJobSheetPartFittedDetails/{name}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
None. |
Body Parameters
PartsFitted| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| JOBID | integer |
None. |
|
| qty | integer |
None. |
|
| ProductCode | string |
None. |
|
| Description | string |
None. |
|
| Partprice | decimal number |
None. |
|
| JOBSHEETID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"JOBID": 2,
"qty": 3,
"ProductCode": "sample string 4",
"Description": "sample string 5",
"Partprice": 6.1,
"JOBSHEETID": 7
}
application/xml, text/xml
Sample:
<BEPartsFitted.PartsFitted xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tentacle_FastFixSystem_API.Models.BE"> <Description>sample string 5</Description> <ID>1</ID> <JOBID>2</JOBID> <JOBSHEETID>7</JOBSHEETID> <Partprice>6.1</Partprice> <ProductCode>sample string 4</ProductCode> <qty>3</qty> </BEPartsFitted.PartsFitted>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |