Skip to content

Update my user data using rest api

On postman you can try using this url:

https://<YOUR_SERVER_URL>/api/v4/users/me

You need to use your personnel access token as a bearer token.

First get your user data

GET https://<YOUR_SERVER_URL>/api/v4/users/me

Use theses data to update your user data

Copy and paste the content of the response in the body of the request and edit the data you want to change.

Then send the request.

PUT https://<YOUR_SERVER_URL>/api/v4/users/me

Reference