Gau Backend Microservices
  1. Account Service
Gau Backend Microservices
  • Account Service
    • [Auth] Login
      POST
    • [Auth] Register
      POST
    • [Auth] Logout
      POST
    • [Auth] Google Login
      POST
    • [Profile] Update Profile
      PUT
    • [Profile] Get Profile
      GET
  • Authorization Service
    • [Token] Renew Access Token
      GET
    • [Token] Create New Token
      POST
    • [Token] Check Access Token
      GET
    • [Token] Revoke Token
      DELETE
  • CDN Service
  • Upload Service
  1. Account Service

[Auth] Login

POST
/api/v2/account/basic/login

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v2/account/basic/login' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "string",
    "password": "string",
    "keepMeLogin": "string",
    "email": "string",
    "phone": "string"
}'
Response Response Example
{}
Modified at 2025-07-28 03:39:50
Next
[Auth] Register
Built with