LicenseX Docs
  • Links
  • GETTING STARTED
    • Installation
  • API ENDPOINTS
    • /license/create
    • /license/delete
    • /license/check
Powered by GitBook
On this page
  • Example request:
  • Responses
  • 200 - License created
  • 404 - Missing Parameters
  • 401 - Invalid API Key
  1. API ENDPOINTS

/license/create

Example request:

{
    "apiKey": string,
    "product": string,
    "userId": string
}

Responses

200 - License created

{
  "success": true,
  "message": "License created",
  "code": 200,
  "licenseKey": string,
  "userId": string,
  "product": string,
  "email": string,
  "maxIps": integer
}

404 - Missing Parameters

{
  "success": false,
  "message": "Missing parameters",
  "code": 404
}

401 - Invalid API Key

{
  "success": false,
  "message": "Invalid API key",
  "code": 401
}

PreviousInstallationNext/license/delete

Last updated 7 months ago