ChatterBeamDevelopers
DELETE · projects:write

Remove project member

Execute the remove_project_member capability through REST or MCP with the same authorization and project checks.

DestructiveMinimum role: owner

REST

DELETE/api/v1/projects/:projectId/members/:memberId
curl "https://chatterbeam.com/api/v1/projects/{projectId}/members/{memberId}" \
  --request DELETE \
  --header "Authorization: Bearer $CHATTERBEAM_API_KEY" \
  --header "Idempotency-Key: unique-operation-key"

MCP

Tool name: remove_project_member. The tool returns the same structured { data, meta } result as REST.

Input

projectIdRequired path identifier
memberIdRequired path identifier

Authorization

Required scope: projects:write. Scope checks are followed by current project membership and the owner minimum role.

Related resources