---
api: 'Business API'
---

# Suspend a team member

Suspend a specific team member, preventing them from accessing the business.

To restore access, use the [Unsuspend a team member](#unsuspend-a-team-member) operation.

:::note
You cannot suspend the business owner.
:::

For more information, see the guides: [Manage team members](https://developer.revolut.com/docs/guides/manage-accounts/teams/manage-team-members).

## Endpoint

POST `/team-members/{team_member_id}/suspend`

## Parameters

### path parameters

- `team_member_id` (string, required)
  The ID of the team member to suspend.

## Returns

### 204

Team member was suspended.

## Error responses

| HTTP status code | Description |
| --- | --- |
| 401 | Unauthorized – authentication credentials are missing or invalid  Returned when the request was not fulfilled because authentication has failed or has not been provided. |
| 403 | Action forbidden - insufficient permissions to perform this action  Returned, for example, when you don't have permissions necessary to perform this action. |
| 404 | Not found  Returned when the team member that you're trying to suspend doesn't exist. |
| 422 | Unprocessable entity  Returned when: - You're trying to suspend the business owner. - The team member has a pending invitation (they haven't accepted it yet). |
