---
title: "Cancel Waitlist Entry"
method: POST
path: "/waitlist_entries/{id}/cancel"
tags: ["Waitlist Entries"]
---

# Cancel Waitlist Entry

`POST /waitlist_entries/{id}/cancel`

Withdraws the caller's pending personal signup. Requires waitlist_entry:cancel. Does not cancel an approved membership.

## Headers

- `Idempotency-Key` string

## Response `200`

current signup state

- WaitlistEntry
  - `account_id` string, required — The seller account, prefixed `biz_`.
  - `approval_failure_reason` 'plan_unavailable' | 'already_member' | 'checkout_failed' | 'unknown' | 'null', nullable, required — Why the last approval attempt failed, or `null` when none has. `plan_unavailable` — the plan, product, or seller account was deleted. `already_member` — the user already has a membership on a one-per-user product. `checkout_failed` — checkout failed, usually a declined payment, and the signup was denied. `unknown` — another failure; retry. Cleared when approval is requeued.
  - `buyer_account_id` string, nullable, required — The account the signup was submitted on behalf of, prefixed `biz_`, or `null` when the user signed up for themselves.
  - `created_at` string, required — When this signup was submitted, as an ISO 8601 timestamp.
  - `custom_field_responses` WaitlistEntryCustomFieldResponse[], required
    - `answer` string, required — The buyer's answer.
    - `id` string, required — The answer's ID, prefixed `cfrp_`.
    - `question` string, required — The question shown when the signup was submitted.
  - `id` string, required — The waitlist signup ID, prefixed `entry_`.
  - `membership_id` string, nullable, required — The membership created for this signup, prefixed `mem_`, or `null` when there is none. Check the membership's status to determine access.
  - `metadata` object, required — Custom key-value metadata associated with this signup.
  - `plan_id` string, required — The plan this signup belongs to, prefixed `plan_`.
  - `product_id` string, nullable, required — The product this signup belongs to, prefixed `prod_`, or `null` when the plan has no product.
  - `status` 'pending' | 'approved' | 'denied' | 'canceled', required — The signup's current state. Approval runs asynchronously, so a signup stays `pending` until processing completes. `approved` alone does not prove an active membership; check `membership_id`.
  - `updated_at` string, required — When this signup last changed, as an ISO 8601 timestamp.
  - `user_id` string, required — The user who submitted this signup, prefixed `user_`.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Resource not found
- `409` — Conflict

## Changes

> 74 revisions in range; 1 not diffed.

- **2026-09-22** `35edb053220a` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/whop/apis/whop-api/changes/waitlist_entries/:id/cancel/post.md)

---

[API](https://skmtc.dev/whop/apis/whop-api.md) · [All operations](https://skmtc.dev/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc.dev/whop/apis/whop-api/revisions/78e1ed7366cd?raw)
