Skip to main content
POST
/
api
/
service
/
webhook-event
/
checkout_session_expired
checkout_session_expired
curl --request POST \
  --url https://{yourDomain}/api/service/webhook-event/checkout_session_expired \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "date": "<string>",
  "payload": {
    "id": "<string>",
    "price": {
      "total": 1.01,
      "subTotal": 123,
      "shipping": 123,
      "totalNet": 123,
      "vat": 123
    },
    "appId": "<string>",
    "merchantAppId": "<string>",
    "merchant": {
      "id": "<string>",
      "appId": "<string>",
      "legalName": "<string>"
    },
    "lineItems": [
      {
        "name": "<string>",
        "singleNet": 123,
        "singleVat": 123,
        "amount": 123,
        "referenceId": "<string>",
        "quantity": 1,
        "image": "<string>",
        "EAN": "<string>",
        "co2Grams": 1
      }
    ],
    "expiresAt": 123,
    "created": 123,
    "referenceId": "<string>",
    "displayId": "<string>",
    "redirectUrl": "<string>",
    "successCallbackUrl": "<string>",
    "errorCallbackUrl": "<string>",
    "availableMarkets": [],
    "express": true,
    "handshake": true,
    "guest": true,
    "disableBankSelection": true,
    "plugin": "<string>",
    "offsetProject": "<string>",
    "impactOffsetProjects": [
      "<string>"
    ],
    "shopLogo": "<string>",
    "shopName": "<string>",
    "incentiveMode": "<string>",
    "shippingMethods": [
      "<unknown>"
    ],
    "selectedShippingMethodId": "<string>",
    "metadata": {},
    "category": "<string>",
    "abortReason": "<string>",
    "quoteCallbackUrl": "<string>",
    "completeCallbackUrl": "<string>",
    "createdAt": "<unknown>",
    "updatedAt": "<unknown>",
    "subaccountId": "<string>"
  }
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.augustus.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Data of the webhook event

id
string
required

The unique id for the webhook.

type
enum<string>
required
Available options:
checkout_session_expired
date
string
required

The date of the webhook.

payload
object
required

The expired checkout session data.

Response

200

OK