Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Delete a checkout link.
Scopes: checkout_links:write
checkout_links:write
PHP
declare(strict_types=1); require 'vendor/autoload.php'; use Polar; $sdk = Polar\Polar::builder() ->setSecurity( '<YOUR_BEARER_TOKEN_HERE>' ) ->build(); $response = $sdk->checkoutLinks->delete( id: '<value>' ); if ($response->statusCode === 200) { // handle response }
{ "error": "<string>", "detail": "<string>" }
You can generate an Organization Access Token from your organization's settings.
The checkout link ID.
Checkout link deleted.
Was this page helpful?