- Home
- API Enriched
- Tenant And Identity
- web
- GET
GET
const url = 'https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/web/namespaces/system/user/settings';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/web/namespaces/system/user/settings \ --header 'Authorization: <Authorization>'Retrieves current user settings object defined to the user.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”A successful response.
Response of modified user settings.
object
Image blob field stores user’s image, should be base64 encoded while used by HTTP.
object
Boolean flag which shows whether email has been sent or not.
If initial access was requested at least once, last_requesting_time contains last time when it happened.
Boolean flag which shows whether initial access was requested or not.
Boolean flag which shows whether RE-request access is allowed or not. Virtually flag shows whether 24hrs are passed from the last_requesting_time timestamp or not.
List of enabled notifications for specific user account.
Definition of existing notifications created for subscription.
object
Code of notification.
Description text of the notification.
Is it enabled.
Public label of the notification.
Switcher for configuration of enabling OTP in IAM Provider.
Example
{ "otp_status": "OTP_DISABLED"}Returned when operation is not authorized.
Examplegenerated
exampleReturned when there is no permission to access resource.
Examplegenerated
exampleReturned when resource is not found.
Examplegenerated
exampleReturned when operation on resource is conflicting with current value.
Examplegenerated
exampleReturned when operation has been rejected as it is happening too frequently.
Examplegenerated
exampleReturned when server encountered an error in processing API.
Examplegenerated
exampleReturned when service is unavailable temporarily.
Examplegenerated
exampleReturned when server timed out processing request.
Examplegenerated
example