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 'accept-language: <accept-language>' \
  --header 'pratiq-channel-uuid: <pratiq-channel-uuid>'
{
  "data": {
    "status": "FAILED",
    "totalAmount": 123,
    "currency": "<string>",
    "errors": [
      "<string>"
    ],
    "primaryPaymentProvider": {
      "type": "ON_SITE",
      "status": "FAILED",
      "paymentMethod": "<unknown>",
      "amount": 123
    },
    "secondaryPaymentProviders": [
      {
        "type": "INCERT",
        "status": "FAILED",
        "paymentMethod": "<unknown>",
        "amount": 123
      }
    ]
  }
}

Headers

accept-language
enum<string>
required

Language of the response

Available options:
en,
de,
fr,
it
pratiq-channel-uuid
string
required

UUID of the sales channel

Path Parameters

checkoutId
string
required

Response

200 - application/json

Successful response

data
object
required