Checkout Status Request
GET /hostedcheckout/status/{checkoutReference}
This call will return the current status of the hosted checkout session for the given checkout reference.
Test URL
The status request will be made to the following URL:
https://checkout-api.staging.straumur.is/api/v1/hostedcheckout/status/{checkoutReference}
An example Url for checkoutReference: faf984ad76db7b2dea3f7bab:
New Response
{
"status": "New",
"payfacReference": null,
"responseDateTime": "2024-09-04T10:35:18.343503Z",
"responseIdentifier": "e4ce3367-4d2b-4398-ad4e-06bcee650104"
}
Completed Response
{
"status": "Completed",
"payfacReference": "ASDAKOS125152",
"responseDateTime": "2024-09-04T10:35:18.343503Z",
"responseIdentifier": "e4ce3367-4d2b-4398-ad4e-06bcee650104"
}
Status Codes
Status | Explanation |
---|---|
New | The session is available for consumption. |
Completed | The session is completed. Payment has been successfully made. |
Expired | The session has expired. No payment has been made. |