- Common Error Responses
- Authentication
- Filtering Data
- Getting Started
- Authentication
- User Confirmation
- User Invitation
- Password Reset
- Impersonation
- MFA
- Sign in authenticationPOST
- Sign in with recovery codePOST
- Sign out authenticationDELETE
- Advanced Reports
- Audit
- Notifications
- Exceptions
- Hosts
- Organizations
- Whitelabel Settings
- Port Lists
- Reports
- Scanners
- Scans
- Schedules
- Targets
- User
- User 2FA
- User Preferences
- Get current user
- Update current user
- Change current user password
- Get current user active plans (Not implemented yet)
- Get organization members
- Get current user products
- Get current organization
- Update current organization
- Get subscriptions history
- Change users product
- Checks if authorization token is valid
- Get current user permissions
- Check if the user can be deleted
- Delete my account
- Generates a new access token
- Revokes the current access token
- (Admin) Transfers all the resources from the user to another user
- Users
- Vulnerabilities
- Webhooks
Update User
PUT
/v2/users/{id}
Users
Last modified:2025-04-24 10:59:46
Request
Path Params
id
stringÂ
required
Body Params application/json
user
objectÂ
optional
email
stringÂ
optional
Example:
user@clone-systems.com
organization_id
string <uuid>
optional
first_name
stringÂ
optional
Example:
Joe
last_name
stringÂ
optional
Example:
Doe
locale
stringÂ
optional
Example:
en
timezone
stringÂ
optional
Example:
UTC
phone
stringÂ
optional
Example:
2353032211
mobile_phone
stringÂ
optional
Example:
+3053032211
url
stringÂ
optional
Example:
clone-systems.com
title
stringÂ
optional
Example:
Software Engineer
address
stringÂ
optional
Example:
Street 33
city
stringÂ
optional
Example:
Athens
state
stringÂ
optional
Example:
State
country
stringÂ
optional
Example:
Greece
zipcode
stringÂ
optional
Example:
10431
comment
stringÂ
optional
Example:
A comment
Example
{
"user": {
"email": "user@clone-systems.com",
"organization_id": "7c60d51f-b44e-4682-87d6-449835ea4de6",
"first_name": "Joe",
"last_name": "Doe",
"locale": "en",
"timezone": "UTC",
"phone": "2353032211",
"mobile_phone": "+3053032211",
"url": "clone-systems.com",
"title": "Software Engineer",
"address": "Street 33",
"city": "Athens",
"state": "State",
"country": "Greece",
"zipcode": "10431",
"comment": "A comment"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/v2/users/' \
--header 'Content-Type: application/json' \
--data-raw '{
"user": {
"email": "user@clone-systems.com",
"organization_id": "7c60d51f-b44e-4682-87d6-449835ea4de6",
"first_name": "Joe",
"last_name": "Doe",
"locale": "en",
"timezone": "UTC",
"phone": "2353032211",
"mobile_phone": "+3053032211",
"url": "clone-systems.com",
"title": "Software Engineer",
"address": "Street 33",
"city": "Athens",
"state": "State",
"country": "Greece",
"zipcode": "10431",
"comment": "A comment"
}
}'
Responses
đŸŸ¢200OK
This response does not have a body.
đŸŸ 401Unauthorized
đŸŸ 403Forbidden
đŸŸ 404Record Not Found
Modified at 2025-04-24 10:59:46