POST api/reports/Buys
Очтёт о покупках Оператора за период
Request Information
URI Parameters
None.
Body Parameters
BuysRequestName | Description | Type | Additional information |
---|---|---|---|
Operator |
ID оператора |
integer |
Required |
From |
Дата начала периода |
date |
None. |
To |
Дата окончания периода |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "Operator": 1, "From": "2025-03-28T12:03:38.5694906+03:00", "To": "2025-03-28T12:03:38.5694906+03:00" }
application/xml, text/xml
Sample:
<BuysRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Models"> <From>2025-03-28T12:03:38.5694906+03:00</From> <Operator>1</Operator> <To>2025-03-28T12:03:38.5694906+03:00</To> </BuysRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReportResponseName | Description | Type | Additional information |
---|---|---|---|
ErrorCode |
Код ошибки |
integer |
Required |
Message |
Сообщение об ошибке |
string |
None. |
Report |
Файл отчёта |
Collection of byte |
Required |
Response Formats
application/json, text/json
Sample:
{ "ErrorCode": 1, "Message": "sample string 2", "Report": "QEA=" }
application/xml, text/xml
Sample:
<ReportResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Models"> <ErrorCode>1</ErrorCode> <Message>sample string 2</Message> <Report>QEA=</Report> </ReportResponse>