**Source URL:** https://limited.veevavault.dev/clinical/vault-api/api-reference/22.1/users/update-users/update-my-user.md

# Update My User



Update information for the currently authenticated user.

<Endpoint path="/api/{version}/objects/users/me" method="PUT"></Endpoint>

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Content-Type` | `application/x-www-form-urlencoded` |
| `Accept` | `application/json` (default) or `application/xml` |
</FieldTable>

## Body Parameters {#body-parameters}

In the body of the request, add any editable fields you wish to update. To remove existing field values, include the field name and set its value to null.

## Request {#request}

<CodeExample title="">
```
curl -X PUT -H "Authorization: {SESSION_ID}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "user_title__v=Technical Writer" \
-d "site__v": "San Francisco",
https://myvault.veevavault.com/api/v17.1/objects/users/me

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "id": 61579
}

```
</CodeExample>

## Response Details {#response-details}

On SUCCESS, the specified values are updated and the request returns the `id` of the currently authenticated user.



---

**Previous:** [Update Single User](/clinical/vault-api/api-reference/22.1/users/update-users/update-single-user)  
**Next:** [Update Multiple Users](/clinical/vault-api/api-reference/22.1/users/update-users/update-multiple-users)