DELETE /organization/members/{user_id} — offboard a member (cascades workspace memberships + frees seat in the service).
DELETE
/api/organization/members/{user_id}
const url = 'https://example.com/api/organization/members/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/api/organization/members/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”user_id
required
string format: uuid
Responses
Section titled “Responses”Media typeapplication/json
{"removed": true} — a removal acknowledgement (membership / link removal).
object
removed
required
Whether the entity was removed.
boolean
Examplegenerated
{ "removed": true}