POST api/SellerPay/PayWithBNPL

Request Information

URI Parameters

None.

Body Parameters

ReqPayToSupplier
NameDescriptionTypeAdditional information
SupplierId

integer

None.

Amount

decimal number

Required

FeePercentage

decimal number

None.

FeeAmount

decimal number

None.

TaxAmount

decimal number

None.

TotalAmount

decimal number

Required

PaymentMode

string

Required

FlexiTenureDays

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "SupplierId": 1,
  "Amount": 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:
<ReqPayToSupplier xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NEOWAY.Models.Request.Pay">
  <Amount>2</Amount>
  <FeeAmount>4</FeeAmount>
  <FeePercentage>3</FeePercentage>
  <FlexiTenureDays>8</FlexiTenureDays>
  <PaymentMode>sample string 7</PaymentMode>
  <SupplierId>1</SupplierId>
  <TaxAmount>5</TaxAmount>
  <TotalAmount>6</TotalAmount>
</ReqPayToSupplier>

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.