import DodoPayments from 'dodopayments';const client = new DodoPayments({ bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted});await client.entitlements.delete('id');
Use this file to discover all available pages before exploring further.
자격을 삭제하는 것은 고객 포털에서 기존 권한을 숨기는 소프트 삭제입니다. 플랫폼 측의 접근을 철회하지는 않습니다:
자격과 연결된 권한은 데이터베이스에 남아 있으며 현재 상태를 유지합니다.
Discord 역할, GitHub 협력자 접근, Notion 접근, Telegram 멤버십, 라이선스 키 및 디지털 파일 URL은 유효합니다.
웹훅이 생성되지 않으며, 설정되지 않습니다.
고객은 포털에서 이러한 권한을 볼 수 없지만, 기초 플랫폼에서의 접근은 계속 됩니다. 이는 구독/결제 주기가 권한을 취소하거나 (취소, 환불), 권한을 수동으로 철회할 때까지 유지됩니다. 각 권한을 수동으로 여기에서 철회하세요.접근을 완전히 차단하려면, 먼저 권한을 철회하고 그 다음 자격을 삭제하세요.
import DodoPayments from 'dodopayments';const client = new DodoPayments({ bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted});await client.entitlements.delete('id');