Update a user
Updates a user in Postman.
Reactivating a user
By setting the active property from false to true, this reactivates an account. This allows the account to authenticate in to Postman and adds the account back on to your Postman team.
Authentication
x-api-keystring
API Key authentication via header
OR
Authorizationstring
A valid [SCIM API key](https://learning.postman.com/docs/administration/scim-provisioning/scim-provisioning-overview/#generating-scim-api-key) for calls to SCIM endpoints.
OR
AuthorizationBasic
Basic authentication of the form Basic <base64(username:password)>.
Path parameters
userId
The user's SCIM ID.
Request
This endpoint expects an object.
schemas
The SCIM schema URI.
userName
The user's email address.
name
Information about the user's name.
active
Sets the user’s active state:
true— Activates the user. This lets them authenticate in to your Postman team.false— Removes the user from your Postman team and deactivates the account. This blocks the user from authenticating in to Postman.
Response
Successful Response
schemas
The SCIM schema URI.
id
The team member's SCIM ID.
userName
The team member's SCIM username.
name
Information about the Postman team member.
externalId
The team member's external ID.
active
If true, the team member is active.
meta
The response’s non-standard meta information.
Errors
400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error