Skip to main content
DELETE
/
v1
/
manage
/
org
/
member
/
{user_id}
Delete organization member
curl --request DELETE \
  --url https://api-v2.requesty.ai/v1/manage/org/member/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "error": {
    "message": "<string>"
  }
}
Offboard a member from your organization. When this endpoint is called:
  • The member is removed from your organization in the identity provider, so they can no longer access it.
  • All API keys created by the member in your organization are invalidated.
  • The member is removed from all of your organization’s groups.
Use the List Organization Members endpoint to look up the user_id for the member you want to offboard.
Offboarding cannot be undone. All requests using API keys the member created in your organization will fail shortly after the call returns.
The member keeps their account and any memberships in other organizations. If they sign in with no memberships left, a fresh default organization is created for them.
This endpoint is idempotent: calling it again for an already-offboarded member returns 200, so it is safe to retry until it succeeds — for example after a 502 from the identity provider.

Authorizations

Authorization
string
header
required

API key for authentication

Path Parameters

user_id
string
required

The user ID of the member, as returned by the list organization members endpoint

Response

Member offboarded successfully (also returned when the user is not a member, making retries safe)

Last modified on June 12, 2026