POST api/RouteData/ParseBonText?bon={bon}&BonNumber={BonNumber}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bon | string |
Required |
|
| BonNumber | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Klen| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| BranchNo | integer |
None. |
|
| DriverId | integer |
None. |
|
| DriverName | string |
String length: inclusive between 0 and 100 |
|
| BonNumber | integer |
None. |
|
| BonText | string |
String length: inclusive between 0 and 2147483647 |
|
| isFiscalBon | boolean |
None. |
|
| BonDateTime | date |
None. |
|
| FPSerialNumber | string |
None. |
|
| FPFiscalMemoryNumber | string |
None. |
|
| BonAmount | decimal number |
None. |
|
| ZReportAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"BranchNo": 1,
"DriverId": 1,
"DriverName": "sample string 2",
"BonNumber": 1,
"BonText": "sample string 3",
"isFiscalBon": true,
"BonDateTime": "2025-12-06T04:10:15.7793368+02:00",
"FPSerialNumber": "sample string 5",
"FPFiscalMemoryNumber": "sample string 6",
"BonAmount": 1.0,
"ZReportAmount": 1.0
}
application/xml, text/xml
Sample:
<Klen xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhoenixService.Data.Data"> <BonAmount>1</BonAmount> <BonDateTime>2025-12-06T04:10:15.7793368+02:00</BonDateTime> <BonNumber>1</BonNumber> <BonText>sample string 3</BonText> <BranchNo>1</BranchNo> <DriverId>1</DriverId> <DriverName>sample string 2</DriverName> <FPFiscalMemoryNumber>sample string 6</FPFiscalMemoryNumber> <FPSerialNumber>sample string 5</FPSerialNumber> <Id>1</Id> <ZReportAmount>1</ZReportAmount> <isFiscalBon>true</isFiscalBon> </Klen>