Skip to main content
DELETE
/
api
/
v1
/
plans
/
{plan_id}
Delete Plan
curl --request DELETE \
  --url https://api.example.com/api/v1/plans/{plan_id}
plan_id
string
required
UUID of the plan to delete
Returns 204 No Content on success.
Cannot delete a plan with active subscriptions. Cancel or migrate all subscriptions first.
400
{
  "detail": "Cannot delete plan. It has 3 active subscription(s). Please cancel or reassign the subscriptions first."
}