- 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
Get current user
GET
/v2/user/me
User
Last modified:2025-04-24 10:59:46
Request
Query Params
products
booleanÂ
optional
details
booleanÂ
optional
current_plan
booleanÂ
optional
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 GET '/v2/user/me'
Responses
🟢200OK
application/json
Body
object {0}
Examples
{
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"type": {
"type": "string"
},
"attributes": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"username": {
"type": "string"
},
"role": {
"type": "string"
},
"email": {
"type": "string"
},
"locale": {
"type": "string"
},
"timezone": {
"type": "string"
},
"active_product": {
"type": "string"
},
"organization": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"incomplete_details": {
"type": "boolean",
"example": false
}
}
},
"created_at": {
"type": "string",
"format": "date_time"
},
"updated_at": {
"type": "string",
"format": "date_time"
},
"last_sign_in_at": {
"type": [
"string",
"null"
],
"format": "date_time",
"nullable": true
},
"last_sign_in_ip": {
"type": [
"string",
"null"
],
"nullable": true
},
"sign_in_count": {
"type": [
"integer",
"null"
],
"nullable": true
},
"two_factor_authentication": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"remind_to_enable": {
"type": "boolean"
},
"otp_sms_enabled": {
"type": "boolean"
},
"otp_totp_enabled": {
"type": "boolean"
},
"otp_phone": {
"type": [
"string",
"null"
],
"nullable": true
},
"otp_default_method": {
"type": [
"string",
"null"
],
"nullable": true
}
}
}
}
}
}
}
}
}
}
}
}
🟠401Unauthorized
Modified at 2025-04-24 10:59:46