POST api/stripe/payment/verify

Request Information

URI Parameters

None.

Body Parameters

VerifyPaymentRequest
NameDescriptionTypeAdditional information
PaymentIntentID

string

None.

CheckoutID

integer

None.

SessionID

string

None.

UserTimeZone

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PaymentIntentID": "sample string 1",
  "CheckoutID": 2,
  "SessionID": "sample string 3",
  "UserTimeZone": "sample string 4"
}

application/xml, text/xml

Sample:
<VerifyPaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Reemy.StripeService">
  <CheckoutID>2</CheckoutID>
  <PaymentIntentID>sample string 1</PaymentIntentID>
  <SessionID>sample string 3</SessionID>
  <UserTimeZone>sample string 4</UserTimeZone>
</VerifyPaymentRequest>

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.