- Getting Started
- Authentication
- Common Error Responses
- Filtering Data
- Authentication
- User Confirmation
- User Invitation
- Password Reset
- Impersonation
- MFA
- Sign in authenticationPOST
- Sign in with recovery codePOST
- Sign out authenticationDELETE
- Targets
- Scans
- Reports
- Vulnerabilities
- Exceptions
- Schedules
- Webhooks
- Advanced Reports
- Audit
- Notifications
- Hosts
- Scanners
- Port Lists
- User
- User 2FA
- User Preferences
- Get current userGET
- Update current userPUT
- Change current user passwordPUT
- Get current user active plans (Not implemented yet)GET
- Get organization membersGET
- Get current user productsGET
- Get current organizationGET
- Update current organizationPUT
- Get subscriptions historyGET
- Change users productPUT
- Checks if authorization token is validGET
- Get current user permissionsGET
- Check if the user can be deletedGET
- Delete my accountDELETE
- Generates a new access tokenPUT
- Revokes the current access tokenPUT
- (Admin) Transfers all the resources from the user to another userPUT
- Organizations
- Users
- Whitelabel Settings
Update current user
PUT
/v2/user/me
User
Last modified:2025-04-24 10:59:46
Request
Body Params application/json
user
objectÂ
optional
first_name
stringÂ
optional
Example:
Joe
last_name
stringÂ
optional
Example:
Doe
email
stringÂ
optional
Example:
user@clone-systems.com
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": {
"first_name": "Joe",
"last_name": "Doe",
"email": "user@clone-systems.com",
"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/user/me' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
This response does not have a body.
🟠401Unauthorized
🟠422Parameter Error
Modified at 2025-04-24 10:59:46