# Remove a User from a Family API

API documentation for the FusionAuth Remove a User from a Family API.

> For the index of this section of the site, see [llms.txt](https://fusionauth.io/docs/llms.txt)

This API is used to remove a User from an existing Family.

## Request

[API Key Authentication](https://fusionauth.io/docs/apis/authentication.md#api-key-authentication)

Remove a User from a Family

`DELETE /api/user/family/{familyId}/{userId}`

### Request Parameters

`familyId`

*   UUID
*   required

The unique Id of the Family.

`userId`

*   UUID
*   required

The unique Id of the User.

#### Request Headers

`X-FusionAuth-TenantId`

*   String
*   optional

The unique Id of the tenant used to scope this API request.

The tenant Id is not required on this request even when more than one tenant has been configured because the tenant can be identified based upon the request parameters or it is otherwise not required.

Specify a tenant Id on this request when you want to ensure the request is scoped to a specific tenant. The tenant Id may be provided through this header or by using a tenant locked API key to achieve the same result.

See [Making an API request using a Tenant Id](https://fusionauth.io/docs/apis/authentication.md#making-an-api-request-using-a-tenant-id) for additional information.

## Response

This API does not return a JSON response body.

*Response Codes*

| Code | Description |
| --- | --- |
| 200 | The request was successful. |
| 400 | The request was invalid and/or malformed. The response will contain an [Errors](https://fusionauth.io/docs/apis/errors.md) JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
| 401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See [Authentication](https://fusionauth.io/docs/apis/authentication.md). |
| 404 | The object you requested doesn't exist. The response will be empty. |
| 500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
| 503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
---

## Other pages in Families

> For the full index of this section, see [Apis](https://fusionauth.io/docs/llms-apis.txt).

- [Add a User to a Family API](https://fusionauth.io/docs/apis/families/add-a-user-to-a-family.md): API documentation for the FusionAuth Add a User to a Family API.
- [Family API](https://fusionauth.io/docs/apis/families.md): Learn about the APIs for creating, retrieving, updating and deleting families.
- [Request Parental Approval API](https://fusionauth.io/docs/apis/families/request-parental-approval.md): API documentation for the FusionAuth Request Parental Approval API.
- [Retrieve a Family API](https://fusionauth.io/docs/apis/families/retrieve-a-family.md): API documentation for the FusionAuth Retrieve a Family API.
- [Retrieve Pending Family Members API](https://fusionauth.io/docs/apis/families/retrieve-pending-family-members.md): API documentation for the FusionAuth Retrieve Pending Family Members API.
- [Update a Family API](https://fusionauth.io/docs/apis/families/update-a-family.md): API documentation for the FusionAuth Update a Family API.
