DELETE
/
v1
/
checkout-links
/
{id}
Typescript (SDK)
import { Polar } from "@polar-sh/sdk";

const polar = new Polar({
  accessToken: process.env["POLAR_ACCESS_TOKEN"] ?? "",
});

async function run() {
  await polar.checkoutLinks.delete({
    id: "<value>",
  });


}

run();
This response does not have an example.

Authorizations

Authorization
string
header
required

You can generate an Organization Access Token from your organization's settings.

Path Parameters

id
string<uuid4>
required

The checkout link ID.

Response

204

Checkout link deleted.