Gau Backend Microservices
  1. Basic Auth
Gau Backend Microservices
  • Account Service
    • Basic Auth
      • [Auth] Login
        POST
      • [Auth] Register
        POST
      • [Auth] Logout
        POST
    • OAuth 2.0
      • [Auth] Google Login
      • [Auth] Logout
    • Profile
      • [Profile] Update Profile
      • [Profile] Get Profile
      • [Profile] Get Security Info
      • [Profile] Update Avatar
      • [Profle] Get All Data
    • 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. Basic Auth

[Auth] Login

POST
https://api.gauas.com/api/v2/account/basic/login
Maintainer:Not configured

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gauas.com/api/v2/account/basic/login' \
--header 'X-Device-ID: K4F9D7X9W2BZ' \
--header 'Authorization: Bearer {{ACCESS-TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email" : "",
    "password":"",
    "keepLogin" : ""
}'
Response Response Example
{}
Modified at 2025-08-25 09:12:15
Next
[Auth] Register
Built with