RevKeen Docs
Api reference

Expire a checkout session

Manually expire an open checkout session. Only sessions with status 'open' or 'pending' and no active payment attempt can be expired.


Related endpoints

  • POST /checkout-sessions — Create a checkout session
  • GET /checkout-sessions/{id} — Retrieve a checkout session

Common errors

  • 401 unauthenticated — missing, malformed, or revoked API key.
  • 404 resource_missing — the referenced resource does not exist or is not visible to your key.
  • 409 conflict — Idempotency-Key collision with a different body, or a concurrent state-transition conflict.

Idempotency

Pass an Idempotency-Key header (UUID v4 recommended) to make retries safe. Keys are valid for 24 hours; see the idempotency guide.

POST
/checkout-sessions/{id}/expire
x-api-key<token>

Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.

In: header

Path Parameters

id*string
Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.revkeen.com/v2/checkout-sessions/550e8400-e29b-41d4-a716-446655440000/expire" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "data": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "status": "expired",
    "expiredAt": "string"
  },
  "requestId": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}