You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*AssigningMemberRoleApi* | [**remove_rbac_role_from_user**](docs/AssigningMemberRoleApi.md#remove_rbac_role_from_user) | **DELETE** /auth/users/{user_id}/roles | Remove RBAC Role From User
*BetaAccessApi* | [**create_beta_access_request**](docs/BetaAccessApi.md#create_beta_access_request) | **POST** /auth/beta-access/requests | Create a new beta access request
129
129
*BetaAccessApi* | [**get_beta_access_requests**](docs/BetaAccessApi.md#get_beta_access_requests) | **GET** /auth/beta-access/requests/{program} | Check the status of beta access requests
130
130
*BetaAccessApi* | [**get_beta_access_status**](docs/BetaAccessApi.md#get_beta_access_status) | **GET** /auth/beta-access/requests | Check the status of all beta access requests
[**get_authenticated_user**](AuthApi.md#get_authenticated_user) | **GET** /auth/me | Retrieve Authenticated User Details
10
9
[**get_user_mfa_status**](AuthApi.md#get_user_mfa_status) | **GET** /auth/me/mfa | Get MFA status for authenticated user
11
10
[**get_user_organizations**](AuthApi.md#get_user_organizations) | **GET** /auth/me/organizations | Get User Organizations
11
+
[**retrieve_authenticated_user_details**](AuthApi.md#retrieve_authenticated_user_details) | **GET** /auth/me | Retrieve Authenticated User Details
12
12
13
13
14
14
# **change_organization_for_token**
@@ -170,20 +170,20 @@ This endpoint does not need any parameter.
170
170
171
171
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
178
+
Retrieve the Multi-Factor Authentication (MFA) status for the currentlyauthenticated user. Includes whether MFA is enabled.
179
179
180
180
### Example
181
181
182
182
* Api Key Authentication (apiKey):
183
183
184
184
```python
185
185
import hyperstack
186
-
from hyperstack.models.auth_user_info_response_modelimportAuthUserInfoResponseModel
186
+
from hyperstack.models.mfa_status_responseimportMFAStatusResponse
187
187
from hyperstack.rest import ApiException
188
188
from pprint import pprint
189
189
@@ -210,12 +210,12 @@ with hyperstack.ApiClient(configuration) as api_client:
@@ -241,27 +241,27 @@ This endpoint does not need any parameter.
241
241
242
242
| Status code | Description | Response headers |
243
243
|-------------|-------------|------------------|
244
-
**200** | User Information | - |
245
-
**400** | Bad Request | - |
244
+
**200** | MFA Status | - |
246
245
**401** | Unauthorized | - |
246
+
**404** | User not found | - |
247
247
**500** | Internal Server Error | - |
248
248
249
249
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
@@ -319,27 +319,28 @@ This endpoint does not need any parameter.
319
319
320
320
| Status code | Description | Response headers |
321
321
|-------------|-------------|------------------|
322
-
**200** | MFA Status | - |
322
+
**200** | Success | - |
323
+
**400** | Bad Request | - |
323
324
**401** | Unauthorized | - |
324
-
**404** | User not found | - |
325
+
**404** | Not Found | - |
325
326
**500** | Internal Server Error | - |
326
327
327
328
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
Retrieve the organizations associated with a user by their user ID. This endpoint is useful for understanding the user's organizational affiliations.
335
+
Retrieves detailed information about the currently authenticated user. For additional information, [**click here**](https://docs.hyperstack.cloud/docs/api-reference/auth-resources/auth).
335
336
336
337
### Example
337
338
338
339
* Api Key Authentication (apiKey):
339
340
340
341
```python
341
342
import hyperstack
342
-
from hyperstack.models.user_organizations_responseimportUserOrganizationsResponse
343
+
from hyperstack.models.auth_user_info_response_modelimportAuthUserInfoResponseModel
343
344
from hyperstack.rest import ApiException
344
345
from pprint import pprint
345
346
@@ -366,12 +367,12 @@ with hyperstack.ApiClient(configuration) as api_client:
@@ -397,10 +398,9 @@ This endpoint does not need any parameter.
397
398
398
399
| Status code | Description | Response headers |
399
400
|-------------|-------------|------------------|
400
-
**200** | Success | - |
401
+
**200** | User Information | - |
401
402
**400** | Bad Request | - |
402
403
**401** | Unauthorized | - |
403
-
**404** | Not Found | - |
404
404
**500** | Internal Server Error | - |
405
405
406
406
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
0 commit comments