Archive Checkout Configuration

Permanently archive a checkout configuration.


This cannot be undone. Archiving disables any active hosted checkout sessions currently using this configuration.

Request

curl --request DELETE \
  --url "$baseUrl/organization/checkout/{id}" \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "success": true,
  "statusCode": 200,
  "message": "Configuration archived successfully",
  "data": null
}

Before you archive

Confirm no live integrations are still referencing this configuration's id — any in-progress checkout session tied to it will stop working immediately.


Did this page help you?