Skip to main content
DELETE
/
v1
/
orgs
/
{orgID}
/
members
/
{userID}
Remove Member from Organization
curl --request DELETE \
  --url http://localhost:3000/v1/orgs/{orgID}/members/{userID} \
  --header 'Authorization: Bearer <token>'
{
  "error": "invalid credentials"
}

Authorizations

Authorization
string
header
required

Use an access token retrieved from login (Bearer sess_...) or a programmatic API key (Bearer ak_...).

Path Parameters

orgID
string<uuid>
required

The ID of the organization.

userID
string<uuid>
required

The ID of the user to remove from the organization.

Response

User successfully removed from the organization