DELETE
/
api
/
v2
/
enterprise
/
members
/
{user_id}
curl -X DELETE "https://api.devin.ai/api/v2/enterprise/members/user_123" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "status": "success"
}

Remove a user from an organization.

Path Parameters

user_id
string
required

The unique identifier of the user to remove

Response

status
string
required

Status of the operation (defaults to “success”)

curl -X DELETE "https://api.devin.ai/api/v2/enterprise/members/user_123" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "status": "success"
}