GET api/General/OrderManage/GetPaymentTransByID?Id={Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

string

Required

Body Parameters

None.

Response Information

Resource Description

utblPaymentTran
NameDescriptionTypeAdditional information
PaymentTransID

string

None.

OrderID

string

None.

RPayOrderID

string

None.

RPayPaymentID

string

None.

PaymentType

string

None.

PaymentAmt

integer

None.

Currency

string

None.

PaymentMethod

string

None.

PaymentStatus

string

None.

MerchantName

string

None.

Fee

integer

None.

Tax

integer

None.

UserID

string

None.

TransDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "PaymentTransID": "sample string 1",
  "OrderID": "sample string 2",
  "RPayOrderID": "sample string 3",
  "RPayPaymentID": "sample string 4",
  "PaymentType": "sample string 5",
  "PaymentAmt": 6,
  "Currency": "sample string 7",
  "PaymentMethod": "sample string 8",
  "PaymentStatus": "sample string 9",
  "MerchantName": "sample string 10",
  "Fee": 1,
  "Tax": 1,
  "UserID": "sample string 11",
  "TransDate": "2025-12-07T09:56:00.3692264+05:30"
}

application/xml, text/xml

Sample:
<utblPaymentTran xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.Models">
  <Currency>sample string 7</Currency>
  <Fee>1</Fee>
  <MerchantName>sample string 10</MerchantName>
  <OrderID>sample string 2</OrderID>
  <PaymentAmt>6</PaymentAmt>
  <PaymentMethod>sample string 8</PaymentMethod>
  <PaymentStatus>sample string 9</PaymentStatus>
  <PaymentTransID>sample string 1</PaymentTransID>
  <PaymentType>sample string 5</PaymentType>
  <RPayOrderID>sample string 3</RPayOrderID>
  <RPayPaymentID>sample string 4</RPayPaymentID>
  <Tax>1</Tax>
  <TransDate>2025-12-07T09:56:00.3692264+05:30</TransDate>
  <UserID>sample string 11</UserID>
</utblPaymentTran>