> 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/profile-picture-partial-update.md).

# Profile Picture Partial Update

Use the `PATCH /user/profile/update-profile-picture/` endpoint to update the profile picture for a user's profile.

***

#### Parameters

| **Name**      | **Type** | **In**   | **Description**                    |
| ------------- | -------- | -------- | ---------------------------------- |
| `profile_pic` | File     | formData | The new profile picture to upload. |

***

#### Responses

**200 OK**

**Description:**\
The profile picture was successfully updated.

**Response Content Type:**\
`application/json`

**Example Response Body:**

```json
{
  "profile_pic": "https://example.com/profile-pictures/updated-picture.jpg"
}
```
