POST api/Report/SetReportLineStatus/{country}/{SHOP}/{DATUM}/{REPORT}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
country

string

Required

SHOP

integer

Required

DATUM

string

Required

REPORT

integer

Required

Body Parameters

Collection of ReportLineStatus
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.