Skip to main content
DELETE
/
payment_methods
/
{id}
Delete payment method
curl --request DELETE \
  --url https://api.whop.com/api/v1/payment_methods/{id} \
  --header 'Authorization: Bearer <token>'
true

Documentation Index

Fetch the complete documentation index at: https://docs.whop.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A company API key, company scoped JWT, app API key, or user OAuth token. You must prepend your key/token with the word 'Bearer', which will look like Bearer ***************************

Path Parameters

id
string
required

The unique identifier of the payment method to delete.

Example:

"payt_xxxxxxxxxxxxx"

Query Parameters

company_id
string | null

The unique identifier of the company. Provide either this or member_id, not both.

Example:

"biz_xxxxxxxxxxxxxx"

member_id
string | null

The unique identifier of the member. Provide either this or company_id, not both.

Example:

"mber_xxxxxxxxxxxxx"

Response

A successful response

Represents true or false values.