# Remove public organization membership for the authenticated user

From **GitHub v3 REST API**.

`DELETE /orgs/{org}/public_members/{username}`

Remove public organization membership for the authenticated user

## Parameters

### `org`

- Location: path
- Required: true
- Type: `string`

### `username`

- Location: path
- Required: true
- Type: `string`

## Responses

### `204`

Response

## Request examples

### cURL

```shell
curl --request DELETE \
  --url {protocol}://{hostname}/api/v3/orgs/{org}/public_members/{username}
```
