POST api/Report/SetReportLineTime/{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 ReportLineTime
NameDescriptionTypeAdditional information
TPN

integer

None.

ACTION_DATE

string

None.

TIME

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "TPN": 1,
    "ACTION_DATE": "sample string 2",
    "TIME": 3
  },
  {
    "TPN": 1,
    "ACTION_DATE": "sample string 2",
    "TIME": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfReportLineTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCLB.Models">
  <ReportLineTime>
    <ACTION_DATE>sample string 2</ACTION_DATE>
    <TIME>3</TIME>
    <TPN>1</TPN>
  </ReportLineTime>
  <ReportLineTime>
    <ACTION_DATE>sample string 2</ACTION_DATE>
    <TIME>3</TIME>
    <TPN>1</TPN>
  </ReportLineTime>
</ArrayOfReportLineTime>

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.