v1

latestOpenAPI 3.0.32026-07-2455445.8 KB
Checkout Session

Review Session

API to retrieve the data related to the card selected by the consumer in the Paze checkout UX, such as the consumer name, masked card, and shipping address, to display on a confirmation screen, if the merchant desires to do so.

post/v1/checkout/sessions/review

Request body

clientContextstring

Customer-defined transaction identifier, reflected in response. Referred to as “sessionId” in web integration. Session reference identifier generated by the Merchant. If present here, it will be returned in the Checkout response. This is recommended to be identical across the Checkout request and the /wallets/sessions/checkout/complete request.

Response

Successfully received complete call for transaction

clientContextstring
ewSIDstring required

Globally unique identifier generated by Early Warning. Returned in the response message in response to the initial request. This identifier ties all information about the session together and should be easily accessible by customer staff submitting support requests to Early Warning. Character set a-f, 0-9, -.

timestampISO8601string date-time required

Timestamp of message in ISO8601 extended combined format. Format: {YYYY}-{MM|-{DD}T{HH}:{MM}:{SS}Z Example: 2015-12-31T17:18Z Time stamp when response is sent by the Service Operator Services.

Example response

{
  "data": {
    "maskedCard": {
      "billingAddress": {
        "name": "someone",
        "line1": "lane x",
        "city": "newyork city",
        "state": "NY",
        "zip": "60172"
      }
    }
  }
}