User Management
Get UserInfo
Authentication
Connections
AWS
Guard Rails
Server Management
Jira
Organization Management
Reports
User Management
Sessions
User Management
Get UserInfo
Get own user’s information
GET
/
userinfo
curl --request GET \
--url https://use.hoop.dev/api/userinfo
{
"email": "jsmith@example.com",
"feature_ask_ai": "unavailable",
"groups": [
"sre",
"dba"
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"intercom_hmac_digest": "<string>",
"is_admin": true,
"is_multitenant": true,
"name": "John Wick",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_license": "",
"org_name": "JohnWickCorp",
"password": "mysecurepassword",
"picture": "",
"role": "standard",
"slack_id": "U053ELZHB53",
"status": "active",
"tenancy_type": "selfhosted",
"verified": true,
"webapp_users_management": "on"
}
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://use.hoop.dev/api/userinfo
{
"email": "jsmith@example.com",
"feature_ask_ai": "unavailable",
"groups": [
"sre",
"dba"
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"intercom_hmac_digest": "<string>",
"is_admin": true,
"is_multitenant": true,
"name": "John Wick",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_license": "",
"org_name": "JohnWickCorp",
"password": "mysecurepassword",
"picture": "",
"role": "standard",
"slack_id": "U053ELZHB53",
"status": "active",
"tenancy_type": "selfhosted",
"verified": true,
"webapp_users_management": "on"
}