POST api/Job/PostNoNamedPreJobStatus
Request Information
URI Parameters
None.
Body Parameters
Collection of NoNamedPreJobPostModelName | Description | Type | Additional information |
---|---|---|---|
ProductId | integer |
None. |
|
TableId | integer |
None. |
|
StatusId | integer |
None. |
|
ProblemText | string |
None. |
|
PickedQuantity | integer |
None. |
Request Formats
application/json, text/json
Sample:
[ { "ProductId": 1, "TableId": 2, "StatusId": 3, "ProblemText": "sample string 4", "PickedQuantity": 5 }, { "ProductId": 1, "TableId": 2, "StatusId": 3, "ProblemText": "sample string 4", "PickedQuantity": 5 } ]
text/html
Sample:
[{"ProductId":1,"TableId":2,"StatusId":3,"ProblemText":"sample string 4","PickedQuantity":5},{"ProductId":1,"TableId":2,"StatusId":3,"ProblemText":"sample string 4","PickedQuantity":5}]
application/xml, text/xml
Sample:
<ArrayOfNoNamedPreJobPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAO.Models.Job"> <NoNamedPreJobPostModel> <PickedQuantity>5</PickedQuantity> <ProblemText>sample string 4</ProblemText> <ProductId>1</ProductId> <StatusId>3</StatusId> <TableId>2</TableId> </NoNamedPreJobPostModel> <NoNamedPreJobPostModel> <PickedQuantity>5</PickedQuantity> <ProblemText>sample string 4</ProblemText> <ProductId>1</ProductId> <StatusId>3</StatusId> <TableId>2</TableId> </NoNamedPreJobPostModel> </ArrayOfNoNamedPreJobPostModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json, text/html
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>