POST api/Flowbird/pagopa/checkPayment

Request Information

URI Parameters

None.

Body Parameters

checkPaymentRequestModel
NameDescriptionTypeAdditional information
contextCode

string

Required

deviceCode

string

Required

session

string

Required

payment

PaymentRequest

Required

Request Formats

application/json, text/json

Sample:
{
  "contextCode": "sample string 1",
  "deviceCode": "sample string 2",
  "session": "sample string 3",
  "payment": {
    "type": "sample string 1",
    "code": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<checkPaymentRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pass.WebApi.Areas.Flowbird.Models">
  <contextCode>sample string 1</contextCode>
  <deviceCode>sample string 2</deviceCode>
  <payment>
    <code>sample string 2</code>
    <type>sample string 1</type>
  </payment>
  <session>sample string 3</session>
</checkPaymentRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.