Remove user from organisation
Removes a user from an organisation. Only admins can perform this action.
/api/v1/{app_id}/organisations/{id}/users/{user_id}- API
- Auth
- OpenAPI
- auth-api
- Updated
- Apr 26, 2026
auth-api:DELETE:/api/v1/{app_id}/organisations/{id}/users/{user_id}
Removes a user from an organisation. Only admins can perform this action.
API ownership
- API family: Auth API
- Best for: Customer identity, session, token, cart, and wishlist flows.
- Do not use from: Merchant admin data syncs or public catalog rendering.
- Guide route: /apis/auth/latest
The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation.
Operation
- Method:
DELETE - Path:
/api/v1/\{app_id\}/organisations/\{id\}/users/\{user_id\} - Summary: Remove user from organisation
- Description: Removes a user from an organisation. Only admins can perform this action.
- OpenAPI contract: auth-api
- Operation ID: Not documented in the OpenAPI contract.
Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
| app_id | path | Yes | string | UUID of the app |
| id | path | Yes | string | UUID of the organisation |
| user_id | path | Yes | string | UUID of the user to remove |
Request body
Not documented in the OpenAPI contract.
Responses
| Status | Description | Content |
|---|---|---|
| 200 | OK | application/json (object) |
| 400 | Invalid request | application/json (object) |
| 403 | Forbidden | application/json (object) |
| 404 | Not Found | application/json (object) |
| 500 | Internal server error | application/json (object) |
200 - object
Message
| Property | Type | Required | Details |
|---|---|---|---|
message | string | No | - |
Generated example (synthetic):
{
"message": "string"
}400 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}403 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}404 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}500 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}Contract identity
Use these fields to confirm you are implementing the intended endpoint contract.
- API family: Auth API
- Method:
DELETE - Path:
/api/v1/\{app_id\}/organisations/\{id\}/users/\{user_id\} - Operation ID: Not documented in the OpenAPI contract.
- OpenAPI tag: Organisations
- OpenAPI summary: Remove user from organisation