POST api/Payment

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
paymentViewModel
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "bankCode": "sample string 1",
  "bankRef": "sample string 2",
  "pnr": "sample string 3",
  "currency": "sample string 4",
  "amount": 5.0,
  "customerName": "sample string 6"
}

application/xml, text/xml

Sample:
<PaymentViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SPA.Models">
  <amount>5</amount>
  <bankCode>sample string 1</bankCode>
  <bankRef>sample string 2</bankRef>
  <currency>sample string 4</currency>
  <customerName>sample string 6</customerName>
  <pnr>sample string 3</pnr>
</PaymentViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.