POST api/Patient/SavePaymentStatus

Request Information

URI Parameters

None.

Body Parameters

CashFreePaymentResponse
NameDescriptionTypeAdditional information
orderId

string

None.

referenceId

string

None.

orderAmount

string

None.

txStatus

string

None.

txMsg

string

None.

txTime

string

None.

paymentMode

string

None.

signature

string

None.

Request Formats

application/json, text/json

Sample:
{
  "orderId": "sample string 1",
  "referenceId": "sample string 2",
  "orderAmount": "sample string 3",
  "txStatus": "sample string 4",
  "txMsg": "sample string 5",
  "txTime": "sample string 6",
  "paymentMode": "sample string 7",
  "signature": "sample string 8"
}

application/xml, text/xml

Sample:
<CashFree.CashFreePaymentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Doktors.Domain">
  <orderAmount>sample string 3</orderAmount>
  <orderId>sample string 1</orderId>
  <paymentMode>sample string 7</paymentMode>
  <referenceId>sample string 2</referenceId>
  <signature>sample string 8</signature>
  <txMsg>sample string 5</txMsg>
  <txStatus>sample string 4</txStatus>
  <txTime>sample string 6</txTime>
</CashFree.CashFreePaymentResponse>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseObj
NameDescriptionTypeAdditional information
status_code

integer

None.

status_text

string

None.

data

Object

None.

http_status

integer

None.

reason_pharse

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status_code": 1,
  "status_text": "sample string 2",
  "data": {},
  "http_status": 4,
  "reason_pharse": "sample string 5"
}

application/xml, text/xml

Sample:
<ResponseObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Doktors.Domain">
  <data />
  <http_status>4</http_status>
  <reason_pharse>sample string 5</reason_pharse>
  <status_code>1</status_code>
  <status_text>sample string 2</status_text>
</ResponseObj>