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

# Delete Member

> Delete a project member

Remove a member from your project.

## Path Parameters

<ParamField path="id" type="string" required>
  The member ID to delete
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Whether the deletion was successful
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE "https://api.usegately.com/api/v1/members/mem_123" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Member deleted successfully"
  }
  ```
</ResponseExample>
