POST api/General/Payment/SaveCBPaymentLog
Request Information
URI Parameters
None.
Body Parameters
CBPaymentLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TransactionID | string |
None. |
|
| OrderID | string |
None. |
|
| PaymentAmount | decimal number |
None. |
|
| PaymentID | string |
None. |
|
| Currency | string |
None. |
|
| PaymentStatus | string |
None. |
|
| UserID | string |
None. |
|
| TransDate | date |
None. |
|
| PaymentLog | string |
None. |
|
| IsRefunded | boolean |
None. |
|
| IPAddress | string |
None. |
|
| PaymentFee | integer |
None. |
|
| PaymentFeeCurrency | string |
None. |
|
| IsPaymentFeeEstimated | boolean |
None. |
|
| IsTaxExempt | boolean |
None. |
|
| TaxLabel | string |
None. |
|
| TaxRate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TransactionID": "sample string 1",
"OrderID": "sample string 2",
"PaymentAmount": 3.1,
"PaymentID": "sample string 4",
"Currency": "sample string 5",
"PaymentStatus": "sample string 6",
"UserID": "sample string 7",
"TransDate": "2025-12-07T09:56:13.6504868+05:30",
"PaymentLog": "sample string 9",
"IsRefunded": true,
"IPAddress": "sample string 10",
"PaymentFee": 1,
"PaymentFeeCurrency": "sample string 11",
"IsPaymentFeeEstimated": true,
"IsTaxExempt": true,
"TaxLabel": "sample string 12",
"TaxRate": "sample string 13"
}
application/xml, text/xml
Sample:
<CBPaymentLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels"> <Currency>sample string 5</Currency> <IPAddress>sample string 10</IPAddress> <IsPaymentFeeEstimated>true</IsPaymentFeeEstimated> <IsRefunded>true</IsRefunded> <IsTaxExempt>true</IsTaxExempt> <OrderID>sample string 2</OrderID> <PaymentAmount>3.1</PaymentAmount> <PaymentFee>1</PaymentFee> <PaymentFeeCurrency>sample string 11</PaymentFeeCurrency> <PaymentID>sample string 4</PaymentID> <PaymentLog>sample string 9</PaymentLog> <PaymentStatus>sample string 6</PaymentStatus> <TaxLabel>sample string 12</TaxLabel> <TaxRate>sample string 13</TaxRate> <TransDate>2025-12-07T09:56:13.6504868+05:30</TransDate> <TransactionID>sample string 1</TransactionID> <UserID>sample string 7</UserID> </CBPaymentLogModel>
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>