POST EventManagement/SendPaymentData

Request Information

URI Parameters

None.

Body Parameters

PaymentGateModel
NameDescriptionTypeAdditional information
Name

string

None.

TotalCharges

decimal number

None.

ActualAmount

decimal number

None.

MailID

string

None.

Phone

string

None.

UHID

string

None.

upi

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "TotalCharges": 2.0,
  "ActualAmount": 3.0,
  "MailID": "sample string 4",
  "Phone": "sample string 5",
  "UHID": "sample string 6",
  "upi": true
}

application/xml, text/xml

Sample:
<PaymentGateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EventManagementAPI.Models">
  <ActualAmount>3</ActualAmount>
  <MailID>sample string 4</MailID>
  <Name>sample string 1</Name>
  <Phone>sample string 5</Phone>
  <TotalCharges>2</TotalCharges>
  <UHID>sample string 6</UHID>
  <upi>true</upi>
</PaymentGateModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.