1. Authentication
Gau Backend Microservices
  • Default module
    • Config Service
      • Get
      • Update
      • Delete
      • Create
      • Health
    • Account Service
      • Authentication
        • Register
          POST
        • Login
          POST
        • Oauth2
          POST
      • Profile
        • Get
        • Upload Avatar
        • Update
    • License Service
      • Create
      • Active
      • Verify
      • Detail
      • Revoke
      • Health
    • Authorization Service
      • Create
      • Renew
      • Check
      • Health
      • Revoke
    • Upload Service
      • [File] Upload File
      • [File] Get Upload File
    • Legacy
      • CDN Service
        • [CDN] Get File
      • Account Service
        • Basic Auth
          • [Auth] Login
          • [Auth] Register
          • [Auth] Logout
        • 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
  1. Authentication

Register

Developing
POST
https://api.gauas.com/v1/account/register
Maintainer:Not configured

Request

Query Params

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.gauas.com/v1/account/register?X-Device-ID=none' \
--header 'X-Device-ID: test' \
--header 'Content-Type: application/json' \
--data '{
    "email" : "tnqbao45gmail.com",
    "password" : "123456",
    "full_name" : "Bao"
}'
Response Response Example
{}
Modified at 2026-05-26 16:47:07
Previous
Health
Next
Login
Built with