POST Admin/saveissuedStatus
Request Information
URI Parameters
None.
Body Parameters
IssueUpdation| Name | Description | Type | Additional information |
|---|---|---|---|
| PRODUCT_CODE | string |
None. |
|
| SIZE | string |
None. |
|
| QUANTITY | integer |
None. |
|
| ORDER_DET_ID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PRODUCT_CODE": "sample string 1",
"SIZE": "sample string 2",
"QUANTITY": 3,
"ORDER_DET_ID": 4
}
text/html
Sample:
{"PRODUCT_CODE":"sample string 1","SIZE":"sample string 2","QUANTITY":3,"ORDER_DET_ID":4}
application/xml, text/xml
Sample:
<IssueUpdation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PGM.Models"> <ORDER_DET_ID>4</ORDER_DET_ID> <PRODUCT_CODE>sample string 1</PRODUCT_CODE> <QUANTITY>3</QUANTITY> <SIZE>sample string 2</SIZE> </IssueUpdation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Output| Name | Description | Type | Additional information |
|---|---|---|---|
| statusCode | integer |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"statusCode": 1,
"message": "sample string 2",
"data": {}
}
text/html
Sample:
{"statusCode":1,"message":"sample string 2","data":{}}
application/xml, text/xml
Sample:
<Output xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PGM.Models"> <data /> <message>sample string 2</message> <statusCode>1</statusCode> </Output>