1. License Service
Gau Backend Microservices
  • Default module
    • Config Service
      • Get
      • Update
      • Delete
      • Create
      • Health
    • Account Service
      • Authentication
        • Register
        • Login
        • Oauth2
      • Profile
        • Get
        • Upload Avatar
        • Update
    • License Service
      • Create
        POST
      • Active
        POST
      • Verify
        POST
      • Detail
        GET
      • Revoke
        DELETE
      • Health
        GET
    • 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. License Service

Active

Developing
POST
https://api.gauas.com/v1/license/activate
Maintainer:Not configured

Request

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/license/activate' \
--header 'secret_key: gauasnumberone' \
--header 'Private-Key: gauasnumberone' \
--header 'Authorization: Bearer {{ACCESS-TOKEN}}' \
--header 'Content-Type: application/json' \
--data '{
  "key": "DD41FE08-D5BE4F2C-AEB9A76F-03C5804C",
  "app_id": "com.example.myapp",
  "device_id": "device-uuid-or-fingerprint"
}'
Response Response Example
{}
Modified at 2026-05-02 08:00:39
Previous
Create
Next
Verify
Built with