v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBUsers
Update a user
Edit a user. Can only be used with an application key belonging to an administrator user.
patch/api/v2/users/{user_id}
Path parameters
user_idstring required
Example:00000000-0000-9999-0000-000000000000
The ID of the 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"
}
]
}