GET api/General/Payment/CBPaymentTransaction?PaymentID={PaymentID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PaymentID

string

Required

Body Parameters

None.

Response Information

Resource Description

CBPaymentLogModel
NameDescriptionTypeAdditional 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.

Response 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-07T10:00:47.6831451+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-07T10:00:47.6831451+05:30</TransDate>
  <TransactionID>sample string 1</TransactionID>
  <UserID>sample string 7</UserID>
</CBPaymentLogModel>