POST api/Report/SetReportLineStatus/{country}/{SHOP}/{DATUM}/{REPORT}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| country | string |
Required |
|
| SHOP | integer |
Required |
|
| DATUM | string |
Required |
|
| REPORT | integer |
Required |
Body Parameters
Collection of ReportLineStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| TPN | integer |
None. |
|
| ACTION_DATE | string |
None. |
|
| STATUS | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"TPN": 1,
"ACTION_DATE": "sample string 2",
"STATUS": 3
},
{
"TPN": 1,
"ACTION_DATE": "sample string 2",
"STATUS": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfReportLineStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCLB.Models">
<ReportLineStatus>
<ACTION_DATE>sample string 2</ACTION_DATE>
<STATUS>3</STATUS>
<TPN>1</TPN>
</ReportLineStatus>
<ReportLineStatus>
<ACTION_DATE>sample string 2</ACTION_DATE>
<STATUS>3</STATUS>
<TPN>1</TPN>
</ReportLineStatus>
</ArrayOfReportLineStatus>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.