PoPaAP
PoPaAP WebsiteDiscord
PoPaAP WebsiteDiscord
  1. User Authentication
  • Use Encrypted Body
    • Javascript
  • API
    • Auth
      • Create Developer Account
      • Developer Login
      • Get My Profile
    • Applications
      • List My Applications
      • Create New Application
      • Get Application Limits
      • Get Application Details
      • Update Application
      • Delete Application
    • Statistics
      • Get Statistics
    • Plans
      • Create New Plan
      • Get Application Plans
      • Update Plan
      • Delete Plan
    • Licenses
      • Generate Licenses
      • Get Application Licenses
      • Validate License
      • Check License Expiration
      • Update License Notes
      • Delete License
      • Get My Licenses
      • Reset License HWID
      • Get License Users
    • User Authentication
      • Create User Account
        POST
      • User Login
        POST
      • Validate User License
        POST
      • Update User License
        POST
      • Get User Info
        GET
    • Variables
      • Get Public Variable
    • /files
    • /collaborators
    • /logs
    • /webhooks
    • Check API Health Status
      GET
PoPaAP WebsiteDiscord
PoPaAP WebsiteDiscord
  1. User Authentication

Validate User License

POST
https://v1.popaap.cc/api/user-auth/validate-license
Last modified:2025-07-25 18:01:29
Maintainer:Kipstz

Request

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://v1.popaap.cc/api/user-auth/validate-license' \
--header 'Content-Type: application/json' \
--data-raw '{
    "app_id": "c0e851e1-4c61-4292-b31a-9709ea076b5a",
    "license_key": "895F9AC23D9EB891EF14FD43316F9A18",
    "hwid": "hwid"
}'
Response Response Example
{
    "message": "License validated successfully",
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOjIsInVzZXJuYW1lIjoiVXNlclRlc3QiLCJhcHBsaWNhdGlvbklkIjoxMiwibGljZW5zZUlkIjo4LCJpYXQiOjE3NTIxNDMxMTgsImV4cCI6MTc1Mjc0NzkxOH0.0jKm4bHa9XEcnZQdKlXDA-VdPRdFwgBzUVGNd6NGg3A",
    "user": {
        "id": 2,
        "username": "UserTest",
        "license_key": "391DCADAB25B5B157EEC3FA48DA305ED",
        "license_plan": {
            "id": 6,
            "name": "test",
            "duration_days": null
        },
        "hwid": "hwid",
        "ip_address": "127.0.0.1",
        "created_at": "2025-07-10T08:06:23.000Z",
        "last_login": "2025-07-10T10:25:18.093Z"
    }
}
Modified at 2025-07-25 18:01:29
Previous
User Login
Next
Update User License
Built with