---
title: "Remove Team Payment Method"
method: DELETE
path: "/billing/team/{team_id}/remove-payment-method"
tags: ["billing"]
---

# Remove Team Payment Method

`DELETE /billing/team/{team_id}/remove-payment-method`

Remove the team's payment method and downgrade to Hobby plan.

Requires: MANAGE_BILLING permission (owner, admin, or billing role)

This endpoint:
1. Cancels any active Stripe subscriptions for the team
2. Downgrades the team to the Hobby plan
3. Removes the stored card from the Stripe customer

Args:
    team_id: Team UUID
    request: Payment method ID to remove
    auth: Authenticated user context

Returns:
    Success status with message

## Path parameters

- `team_id` string, required

## Request body

- RemoveTeamPaymentMethodRequest — Request model for removing a team payment method.
  - `payment_method_id` string, required — Stripe payment method ID to remove

## Response `200`

Successful Response

- SuccessResponse — Generic success response.
  - `success` boolean
  - `message` string, nullable
  - `data` object, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/pioneer/apis/brain-api.md) · [All operations](https://skmtc.net/pioneer/apis/brain-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pioneer/brain-api/versions/31dfe831e079/schema)
