POST api/Mobapi/OnlinePaymentstatusUpdate

Request Information

URI Parameters

None.

Body Parameters

OnlinePayment
NameDescriptionTypeAdditional information
OrderID

string

None.

RazorID

string

None.

Amount

decimal number

None.

IsPaymentSuccess

boolean

None.

IsPaymentFail

boolean

None.

IsPaymentCancel

boolean

None.

Description

string

None.

Createby

integer

None.

PaymentID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "OrderID": "sample string 1",
  "RazorID": "sample string 2",
  "Amount": 3.0,
  "IsPaymentSuccess": true,
  "IsPaymentFail": true,
  "IsPaymentCancel": true,
  "Description": "sample string 7",
  "Createby": 8,
  "PaymentID": "sample string 9"
}

application/xml, text/xml

Sample:
<OnlinePayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entity">
  <Amount>3</Amount>
  <Createby>8</Createby>
  <Description>sample string 7</Description>
  <IsPaymentCancel>true</IsPaymentCancel>
  <IsPaymentFail>true</IsPaymentFail>
  <IsPaymentSuccess>true</IsPaymentSuccess>
  <OrderID>sample string 1</OrderID>
  <PaymentID>sample string 9</PaymentID>
  <RazorID>sample string 2</RazorID>
</OnlinePayment>

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.