POST api/reports/OperatorBookkeeping
Отчёт для бухгалтерии оператора за период
Request Information
URI Parameters
None.
Body Parameters
OperatorBookkeepingRequest| Name | 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-10-28T12:00:44.3241178+03:00",
"To": "2025-10-28T12:00:44.3241178+03:00"
}
application/xml, text/xml
Sample:
<OperatorBookkeepingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Models"> <From>2025-10-28T12:00:44.3241178+03:00</From> <Operator>1</Operator> <To>2025-10-28T12:00:44.3241178+03:00</To> </OperatorBookkeepingRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReportResponse| Name | 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>