POST api/Payment/createLinkPayment

Request Information

URI Parameters

None.

Body Parameters

AppPayment
NameDescriptionTypeAdditional information
name

string

None.

mobileNo

string

None.

invoiceCode

string

None.

invoiceNo

string

None.

price

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "mobileNo": "sample string 2",
  "invoiceCode": "sample string 3",
  "invoiceNo": "sample string 4",
  "price": 5.1
}

application/xml, text/xml

Sample:
<AppPayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiSazmani.Models">
  <invoiceCode>sample string 3</invoiceCode>
  <invoiceNo>sample string 4</invoiceNo>
  <mobileNo>sample string 2</mobileNo>
  <name>sample string 1</name>
  <price>5.1</price>
</AppPayment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>