POST api/UpdatePaymentStatus?TYPE={TYPE}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
TYPE

string

Required

Body Parameters

UpdatePaymentStatus
NameDescriptionTypeAdditional information
USER_ID

string

None.

ORDER_ID

string

None.

TRANSACTION_ID

string

None.

PAYMENT_STATUS

string

None.

PAYMENT_DATE

string

None.

TRANSACTION_STATUS

string

None.

TRANSACTION_AMT

string

None.

REMAING_AMOUNT

string

None.

Request Formats

application/json, text/json

Sample:
{
  "USER_ID": "sample string 1",
  "ORDER_ID": "sample string 2",
  "TRANSACTION_ID": "sample string 3",
  "PAYMENT_STATUS": "sample string 4",
  "PAYMENT_DATE": "sample string 5",
  "TRANSACTION_STATUS": "sample string 6",
  "TRANSACTION_AMT": "sample string 7",
  "REMAING_AMOUNT": "sample string 8"
}

application/xml, text/xml

Sample:
<UpdatePaymentStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiNamo.Models">
  <ORDER_ID>sample string 2</ORDER_ID>
  <PAYMENT_DATE>sample string 5</PAYMENT_DATE>
  <PAYMENT_STATUS>sample string 4</PAYMENT_STATUS>
  <REMAING_AMOUNT>sample string 8</REMAING_AMOUNT>
  <TRANSACTION_AMT>sample string 7</TRANSACTION_AMT>
  <TRANSACTION_ID>sample string 3</TRANSACTION_ID>
  <TRANSACTION_STATUS>sample string 6</TRANSACTION_STATUS>
  <USER_ID>sample string 1</USER_ID>
</UpdatePaymentStatus>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.