Checkout Status Request
GET /sessioncheckout/status/{sessionId}?sessionResult={sessionResult}
This call will return the current status of the session checkout session for the given sessionId and sessionResult.
Test URL
The status request on staging would be made to the following URL:
New Response
{
"status": "Active",
"responseDateTime": "2024-09-04T10:35:18.343503Z",
"responseIdentifier": "e4ce3367-4d2b-4398-ad4e-06bcee650104"
}
Completed Response
{
"status": "Completed",
"responseDateTime": "2024-09-04T10:35:18.343503Z",
"responseIdentifier": "e4ce3367-4d2b-4398-ad4e-06bcee650104"
}
Status Codes
Status | Explanation |
---|---|
Active | The session is still active and can be paid. |
Completed | The shopper completed the payment. This means that the payment was authorized. |
Canceled | The shopper canceled the payment. |
Expired | The session has expired. The default expiry time is 1 hour after the session is created. Shoppers can no longer complete the payment with this session. |
PaymentPending | The shopper is in the process of making the payment. This applies to payment methods with an asynchronous flow. |
Refused | The session has been refused, due to too many refused payment attempts. Shoppers can no longer complete the payment with this session. |