v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBUsers
Update current user
Edit the profile of the currently authenticated user. Updatable fields include name, title, email, and disabled status. The id field in the request body must match the authenticated user's UUID; a mismatch returns a 422 error. Email address changes are recorded in the audit trail. Requires the user_self_profile_write permission.
patch/api/v2/current_user
Request body
Example request
{
"data": {
"id": "00000000-0000-feed-0000-000000000000",
"type": "users"
}
}Response
OK
Example response
{
"data": {
"relationships": {
"org": {
"data": {
"id": "00000000-0000-beef-0000-000000000000",
"type": "orgs"
}
},
"other_orgs": {
"data": []
},
"other_users": {
"data": []
},
"roles": {
"data": [
{
"id": "3653d3c6-0c75-11ea-ad28-fb5701eabc7d",
"type": "roles"
}
]
}
},
"type": "users"
},
"included": [
{
"type": "orgs"
}
]
}