POST api/CustomerPayment/PaymentStatus

Documentation for 'PaymentStatus'.

Request Information

Parameters

NameDescriptionAdditional information
ObjPayments
Documentation for 'ObjPayments'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "PAYMENT_STATUS": "sample string 1",
  "PAYMENT_REFNO": "sample string 2",
  "PAYMENT_MODE": "sample string 3",
  "PAYMENT_AMOUNT": 4.0,
  "PAYMENT_DATE": "sample string 5",
  "PAYMENT_URL": "sample string 6",
  "REFERENCE_NUMBER": "sample string 7",
  "SOURCE": "sample string 8",
  "TRANSACTION_ID": "sample string 9"
}

application/xml, text/xml

Sample:
<PaymentDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TVSE_Payments">
  <PAYMENT_AMOUNT>4</PAYMENT_AMOUNT>
  <PAYMENT_DATE>sample string 5</PAYMENT_DATE>
  <PAYMENT_MODE>sample string 3</PAYMENT_MODE>
  <PAYMENT_REFNO>sample string 2</PAYMENT_REFNO>
  <PAYMENT_STATUS>sample string 1</PAYMENT_STATUS>
  <PAYMENT_URL>sample string 6</PAYMENT_URL>
  <REFERENCE_NUMBER>sample string 7</REFERENCE_NUMBER>
  <SOURCE>sample string 8</SOURCE>
  <TRANSACTION_ID>sample string 9</TRANSACTION_ID>
</PaymentDetails>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedMediaTypeFormatterTracer' to write type 'PaymentDetails'.