Put User
Update a user by ID
This endpoint is responsible for updating a user. For more information, check the specification: https://tools.ietf.org/html/rfc7644#section-3.5.1.
Request
URI
PUT
https://{api_host}/usergroup/t/{tenant}/scim/v2/Users/{id}
COPY
Path Parameters
string
id
Required
The ID of the user
string
tenant
Required
The VMware Identity Services tenant ID
tenant example
my-tenant
Request Body
UserMedia
of type(s)
application/scim+json
Required
"UserMedia Object"
Responses
200
The user was successfully updated.
Returns
UserMedia
of type(s)
application/scim+json
"UserMedia Object"
400
The request contains invalid information.
Operation doesn't return any data structure
404
The user was not found.
Operation doesn't return any data structure
409
The specified version number does not match the resource's latest version number, or a service provider refused to create a new, duplicate resource.
Operation doesn't return any data structure
500
Unexpected error.
Operation doesn't return any data structure
Code Samples
COPY
curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/scim+json' -d '[{}]' https://{api_host}/usergroup/t/{tenant}/scim/v2/Users/{id}