---
title: "Remove app user"
method: DELETE
path: "/api/apps/{app_id}/entities/User/{user_id}"
---

# Remove app user

`DELETE /api/apps/{app_id}/entities/User/{user_id}`

<Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Removes a user from the app.

The user loses access straight away, including any editor access they had to the app. Their invitation or access request is deleted too, so they aren't added back the next time they sign in, unless they belong to a group shared with the app, which lets them back in through the group. To give them access again, invite them with [Invite app users](/api-reference/invite-app-users). You can't remove the app's owner.

Removing a user triggers the app's webhooks for the `User` entity.

<Note>This endpoint accepts a personal API key belonging to a user with editor access to the app. A read-only key is refused, and workspace API keys are not accepted.</Note>

## Path parameters

- `user_id` string, required — ID of the user, as `id` in the response of [List app users](/api-reference/list-app-users).
- `app_id` string, required — ID of the app the user belongs to.

## Response `200`

The user was removed.

- object — Confirmation that a record was deleted.
  - `success` boolean, required — Always `true`. A delete that doesn't happen returns an error instead.

## Other responses

- `401` — Missing or invalid credentials.
- `403` — You don't have editor access to this app, the user is the app's owner, or your API key is read-only.
- `404` — App not found, or the app has no user with this ID.
- `429` — Rate limit exceeded. The base limit is 70 requests every 30 seconds. See [Rate limits](/developers/references/apps-api/get-started/rate-limits) for the multiplier your plan gets.

## Changes

- **2026-09-27** `5e69adeb8667` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/base44/apis/base44-app-management-api/changes/api/apps/:app_id/entities/User/:user_id/delete.md)

---

[API](https://skmtc.dev/base44/apis/base44-app-management-api.md) · [All operations](https://skmtc.dev/base44/apis/base44-app-management-api/llms.txt) · [OpenAPI document](https://skmtc.dev/base44/apis/base44-app-management-api/revisions/5e69adeb8667?raw)
