Skip to main content
GET
/
api
/
checkout
/
{checkoutId}
/
payment
/
status
cURL
curl --request GET \
  --url https://api.pricenow.dev/api/checkout/{checkoutId}/payment/status \
  --header 'pratiq-client-id: <pratiq-client-id>'
{
  "data": {
    "status": "FAILED",
    "totalAmount": 123,
    "currency": "<string>",
    "errors": [
      "<string>"
    ],
    "primaryPaymentProvider": {
      "type": "ON_SITE",
      "status": "FAILED",
      "paymentMethod": "<any>",
      "amount": 123
    },
    "secondaryPaymentProviders": [
      {
        "type": "INCERT",
        "status": "FAILED",
        "paymentMethod": "<any>",
        "amount": 123
      }
    ]
  }
}

Headers

pratiq-client-id
required

Global Webshop Client Id

pratiq-channel-uuid
string

UUID of the sales channel

Path Parameters

checkoutId
string
required

Response

200 - application/json

Successful response

data
object
required
  • Option 1
  • Option 2