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

Remove a user from an organization.

Path Parameters

org_id
string
required

The unique identifier of the organization

user_id
string
required

The unique identifier of the user to remove

Response

status
string
default:"success"

Status of the operation

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