POST api/RouteData/SetKlenData?cBranchNo={cBranchNo}&cDriverId={cDriverId}&cDriverName={cDriverName}&Code={Code}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| cBranchNo | integer |
Required |
|
| cDriverId | integer |
Required |
|
| cDriverName | string |
Required |
|
| Code | string |
Required |
Body Parameters
Collection of KlenData| Name | Description | Type | Additional information |
|---|---|---|---|
| BonNumber | integer |
None. |
|
| Text | string |
None. |
|
| isFiscalBon | boolean |
None. |
|
| BonDateTime | date |
None. |
|
| FPSerialNumber | string |
None. |
|
| FPFiscalMemoryNumber | string |
None. |
|
| BonAmount | decimal number |
None. |
|
| ZReportAmount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"BonNumber": 1,
"Text": "sample string 2",
"isFiscalBon": true,
"BonDateTime": "2025-12-06T05:50:17.2166331+02:00",
"FPSerialNumber": "sample string 5",
"FPFiscalMemoryNumber": "sample string 6",
"BonAmount": 1.0,
"ZReportAmount": 1.0
},
{
"BonNumber": 1,
"Text": "sample string 2",
"isFiscalBon": true,
"BonDateTime": "2025-12-06T05:50:17.2166331+02:00",
"FPSerialNumber": "sample string 5",
"FPFiscalMemoryNumber": "sample string 6",
"BonAmount": 1.0,
"ZReportAmount": 1.0
}
]
application/xml, text/xml
Sample:
<ArrayOfKlenData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhoenixService.Data.Data">
<KlenData>
<BonAmount>1</BonAmount>
<BonDateTime>2025-12-06T05:50:17.2166331+02:00</BonDateTime>
<BonNumber>1</BonNumber>
<FPFiscalMemoryNumber>sample string 6</FPFiscalMemoryNumber>
<FPSerialNumber>sample string 5</FPSerialNumber>
<Text>sample string 2</Text>
<ZReportAmount>1</ZReportAmount>
<isFiscalBon>true</isFiscalBon>
</KlenData>
<KlenData>
<BonAmount>1</BonAmount>
<BonDateTime>2025-12-06T05:50:17.2166331+02:00</BonDateTime>
<BonNumber>1</BonNumber>
<FPFiscalMemoryNumber>sample string 6</FPFiscalMemoryNumber>
<FPSerialNumber>sample string 5</FPSerialNumber>
<Text>sample string 2</Text>
<ZReportAmount>1</ZReportAmount>
<isFiscalBon>true</isFiscalBon>
</KlenData>
</ArrayOfKlenData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>