> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/user/delete-profile-picture.md).

# Delete Profile Picture

The `DELETE /user/profile/update-profile-picture/` endpoint allows the deletion of a user's profile picture. No parameters are required.

***

#### Parameters

None

***

#### Responses

| **Code** | **Description**                                            |
| -------- | ---------------------------------------------------------- |
| `204`    | Profile picture deleted successfully. No content returned. |

***

#### Example Request

```http
DELETE /user/profile/update-profile-picture/ HTTP/1.1
Host: api.example.com
Authorization: Bearer <access_token>
```

***

#### Example Response

```http
codeHTTP/1.1 204 No Content
```
