> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nexusmission.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Member

> Remove a member from a project.

## Path Parameters

<ParamField path="projectId" type="string" required>
  Project ID.
</ParamField>

<ParamField path="memberId" type="string" required>
  Member ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE http://localhost:3000/api/v1/projects/clxyz456/members/clmem001 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "message": "Member removed successfully"
  }
  ```
</ResponseExample>
