AuthenticationSelfAdminApi
Method | HTTP request | Description |
---|---|---|
complete_fido_register_using_post | POST /api/web/v1/self/fidotokens | Complete FIDO token registration for the current user. |
delete_self_fido_token_using_delete | DELETE /api/web/v1/self/fidotokens/{fidoid} | Delete a FIDO token from the current user. |
get_offline_token_responses_using_post | POST /api/web/v1/self/tokens/offline | Get Offline Token Responses |
get_self_fido_token_using_get | GET /api/web/v1/self/fidotokens/{fidoid} | Get a FIDO token for the current user. |
self_delete_user_values_using_put | PUT /api/web/v1/self/values | Update to delete User Values |
self_get_user_values_using_get | GET /api/web/v1/self/values | Get User Values |
self_set_user_values_using_post | POST /api/web/v1/self/values | Set or update User Values |
start_fido_register_using_get | GET /api/web/v1/self/fidotokens | Start FIDO token registration for the current user. |
update_self_fido_token_using_put | PUT /api/web/v1/self/fidotokens/{fidoid} | Update a FIDO token from the current user. |
complete_fido_register_using_post
FIDOToken complete_fido_register_using_post(fido_register_response)
Complete FIDO token registration for the current user.
- Api Key Authentication (AdminAPIAuthentication):
Parameters
Name | Type | Description | Notes |
---|---|---|---|
fido_register_response | FIDORegisterResponse |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | Successful | - |
400 | Bad Request | - |
401 | Access denied | - |
403 | Forbidden | - |
404 | Not Found | - |
409 | Conflict | - |
delete_self_fido_token_using_delete
delete_self_fido_token_using_delete(fidoid)
Delete a FIDO token from the current user.
Example
- Api Key Authentication (AdminAPIAuthentication):
Parameters
Name | Type | Description | Notes |
---|---|---|---|
fidoid | str |
Return type
void (empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | Successful | - |
400 | Bad Request | - |
401 | Access denied | - |
403 | Forbidden | - |
404 | Not Found | - |
409 | Conflict | - |
get_offline_token_responses_using_post
OfflineTokenAuthenticateResponse get_offline_token_responses_using_post(get_offline_token_authenticate_parms)
Get Offline Token Responses
Example
Parameters
Name | Type | Description | Notes |
---|---|---|---|
get_offline_token_authenticate_parms | GetOfflineTokenAuthenticateParms |
Return type
OfflineTokenAuthenticateResponse
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | Successful | - |
400 | Bad Request | - |
401 | Access denied | - |
403 | Forbidden | - |
404 | Not Found | - |
409 | Conflict | - |
get_self_fido_token_using_get
FIDOToken get_self_fido_token_using_get(fidoid)
Get a FIDO token for the current user.
Example
- Api Key Authentication (AdminAPIAuthentication):
Parameters
Name | Type | Description | Notes |
---|---|---|---|
fidoid | str |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | Successful | - |
400 | Bad Request | - |
401 | Access denied | - |
403 | Forbidden | - |
404 | Not Found | - |
409 | Conflict | - |
self_delete_user_values_using_put
List[UserClientValue] self_delete_user_values_using_put(request_body)
Update to delete User Values
Example
- Api Key Authentication (AdminAPIAuthentication):
Parameters
Name | Type | Description | Notes |
---|---|---|---|
request_body | List[str] |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad request | - |
401 | Authorization information is missing or invalid | - |
self_get_user_values_using_get
List[UserClientValue] self_get_user_values_using_get()
Get User Values
Example
- Api Key Authentication (AdminAPIAuthentication):
Parameters
This endpoint does not need any parameter.
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad request | - |
401 | Authorization information is missing or invalid | - |
self_set_user_values_using_post
self_set_user_values_using_post(user_client_value)
Set or update User Values
Example
- Api Key Authentication (AdminAPIAuthentication):
Parameters
Name | Type | Description | Notes |
---|---|---|---|
user_client_value | List[UserClientValue] |
Return type
void (empty response body)
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad request | - |
401 | Authorization information is missing or invalid | - |
start_fido_register_using_get
FIDORegisterChallenge start_fido_register_using_get()
Start FIDO token registration for the current user.
Example
- Api Key Authentication (AdminAPIAuthentication):
Parameters
This endpoint does not need any parameter.
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | Successful | - |
400 | Bad Request | - |
401 | Access denied | - |
403 | Forbidden | - |
404 | Not Found | - |
409 | Conflict | - |
update_self_fido_token_using_put
update_self_fido_token_using_put(fidoid, fido_token_parms)
Update a FIDO token from the current user.
Example
- Api Key Authentication (AdminAPIAuthentication):
Parameters
Name | Type | Description | Notes |
---|---|---|---|
fidoid | str | ||
fido_token_parms | FIDOTokenParms |
Return type
void (empty response body)
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json
HTTP response details
Status code | Description | Response headers |
---|---|---|
200 | Successful | - |
400 | Bad Request | - |
401 | Access denied | - |
403 | Forbidden | - |
404 | Not Found | - |
409 | Conflict | - |