Skip to main content
DELETE
/
v1
/
checkout-links
/
{id}
TypeScript SDK
import { Solifyn } from 'solifyn';

const solifyn = new Solifyn({ apiKey: 'your_private_api_key_here' });

// Revoke and delete checkout link
await solifyn.checkoutLinks.delete('clink_019e56a1...');
console.log('Checkout link revoked.');
{
  "message": "Checkout link deleted successfully"
}

Authorizations

Authorization
string
header
required

Authenticate requests using your standard bearer API key (e.g. YOUR_API_KEY).

Path Parameters

id
string
required

Checkout Link ID

Example:

"chk_123"

Response

200 - application/json

Checkout link deleted successfully.

message
string
required

Response message indicating the outcome of the action.

Example:

"Checkout link deleted successfully"