POST api/SuperBuyer/PayWithBNPL

Request Information

URI Parameters

None.

Body Parameters

ReqBuyPayNow
NameDescriptionTypeAdditional information
OrderId

integer

None.

OrderAmount

decimal number

None.

FeePercentage

decimal number

None.

FeeAmount

decimal number

None.

TaxAmount

decimal number

None.

TotalAmount

decimal number

None.

PaymentMode

string

None.

FlexiTenureDays

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "OrderId": 1,
  "OrderAmount": 2.0,
  "FeePercentage": 3.0,
  "FeeAmount": 4.0,
  "TaxAmount": 5.0,
  "TotalAmount": 6.0,
  "PaymentMode": "sample string 7",
  "FlexiTenureDays": 8
}

application/xml, text/xml

Sample:
<ReqBuyPayNow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NEOWAY.Models.Request.BuyModule">
  <FeeAmount>4</FeeAmount>
  <FeePercentage>3</FeePercentage>
  <FlexiTenureDays>8</FlexiTenureDays>
  <OrderAmount>2</OrderAmount>
  <OrderId>1</OrderId>
  <PaymentMode>sample string 7</PaymentMode>
  <TaxAmount>5</TaxAmount>
  <TotalAmount>6</TotalAmount>
</ReqBuyPayNow>

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.