POST api/Online/SendPaymentLink
Request Information
URI Parameters
None.
Body Parameters
PaymentData| Name | Description | Type | Additional information |
|---|---|---|---|
| MerchantId | integer |
None. |
|
| Amount | decimal number |
None. |
|
| Name | string |
None. |
|
| string |
None. |
||
| ContactNumber | string |
None. |
|
| PaymentId | integer |
None. |
|
| OnlineId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"MerchantId": 1,
"Amount": 2.1,
"Name": "sample string 3",
"Email": "sample string 4",
"ContactNumber": "sample string 5",
"PaymentId": 1,
"OnlineId": 1
}
application/xml, text/xml
Sample:
<PaymentData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LP.WebAPI.Models"> <Amount>2.1</Amount> <ContactNumber>sample string 5</ContactNumber> <Email>sample string 4</Email> <MerchantId>1</MerchantId> <Name>sample string 3</Name> <OnlineId>1</OnlineId> <PaymentId>1</PaymentId> </PaymentData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.