Authentication
Connections
Data Masking Rules
AWS
Guard Rails
Server Management
Jira
Organization Management
Plugins
Reports
User Management
Sessions
Session
User Management
Get User
Get user by email or subject id
GET
/
users
/
{emailOrID}
Copy
Ask AI
curl --request GET \
--url https://use.hoop.dev/api/users/{emailOrID}
Copy
Ask AI
{
"email": "jsmith@example.com",
"groups": [
"sre",
"dba"
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "John Wick",
"password": "mysecurepassword",
"picture": "",
"role": "standard",
"slack_id": "U053ELZHB53",
"status": "active",
"verified": true
}
Path Parameters
The subject identifier or email of the user
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://use.hoop.dev/api/users/{emailOrID}
Copy
Ask AI
{
"email": "jsmith@example.com",
"groups": [
"sre",
"dba"
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "John Wick",
"password": "mysecurepassword",
"picture": "",
"role": "standard",
"slack_id": "U053ELZHB53",
"status": "active",
"verified": true
}
Assistant
Responses are generated using AI and may contain mistakes.