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

# Unsuspend a team member

Unsuspend a [suspended](#suspend-a-team-member) team member, restoring their access to the business.

:::note
You cannot unsuspend the business owner (the owner cannot be suspended).
:::

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}/unsuspend`

## Parameters

### path parameters

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

## Returns

### 204

Team member was unsuspended.

## 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 unsuspend doesn't exist. |
| 422 | Unprocessable entity  Returned when: - You're trying to unsuspend the business owner (the owner cannot be suspended). - The team member has a pending invitation (they haven't accepted it yet). |
