Gau Backend Microservices
  1. Profile
Gau Backend Microservices
  • Account Service
    • Basic Auth
      • [Auth] Login
      • [Auth] Register
      • [Auth] Logout
    • OAuth 2.0
      • [Auth] Google Login
      • [Auth] Logout
    • Profile
      • [Profile] Update Profile
        PUT
      • [Profile] Get Profile
        GET
      • [Profile] Get Security Info
        GET
      • [Profile] Update Avatar
        PATCH
      • [Profle] Get All Data
        GET
    • MFA
      • [TOTP] Get TOTP Authentication
      • [TOTP] Enable TOTP Authentication
      • [TOTP] Verify Login
  • Authorization Service
    • [Token] Renew Access Token
      GET
    • [Token] Create New Token
      POST
    • [Token] Check Access Token
      GET
    • [Token] Revoke Token
      DELETE
  • CDN Service
    • [CDN] Get File
      GET
  • Upload Service
    • [File] Upload File
      POST
    • [File] Get Upload File
      GET
  • Cloud Service
    • IAM
      • [IAM] Create IAM
    • Object Storage
      • [Bucket] Create Bucket
      • [Bucket] Delete Bucket By ID
      • [Bucket] Update Bucket Access
      • [Bucket] Get Bucket Access
      • [Bucket] Get List Bucket By Owner
      • [File] Upload Object To Bucket
      • [File] Get All Object In Bucket
      • [File] Delete Object From Bucket
      • [Large File] Init Chunked Upload
      • [Large File] Upload Chunk (Multipart Form)
      • [Large File] Check Progress
      • [Large File] Complete Upload
      • [Large File] Abort Upload
    • Compute
      • [Compute] Get Compute Flavor
      • [Compute] Get Compute Image
  1. Profile

[Profile] Get Security Info

Developing
GET
https://api.gauas.com/api/v2/account/profile/security
Maintainer:Not configured

Request

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.gauas.com/api/v2/account/profile/security' \
--header 'Authorization: Bearer {{ACCESS-TOKEN}}'
Response Response Example
{}
Modified at 2025-10-21 03:58:59
Previous
[Profile] Get Profile
Next
[Profile] Update Avatar
Built with