Skip to main content
DELETE /api/v1/projects/{project_id}/members/{member_id} Requires project_members.remove permission. Removing a member revokes their access to the project but does not affect their organization membership.

Path parameters

project_id
string
required
UUID of the project.
member_id
string
required
UUID of the project membership record.

Response

removed
boolean
required
Always true when the removal succeeds.

Errors

StatusWhen
403Caller lacks project_members.remove permission
404Project or member not found

Example

curl -X DELETE http://localhost:8080/api/v1/projects/p1b2c3d4-e5f6-7890-abcd-ef1234567890/members/mb1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer <token>"
{
  "removed": true
}

Build docs developers (and LLMs) love