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 deleted
  • 404 - Missing Parameters
  • 404 - License not found
  • 401 - Invalid API Key
  1. API ENDPOINTS

/license/delete

Example request:

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

Responses

200 - License deleted

{
  "success": true,
  "message": "License created",
  "code": 200,
  "license": string,
  "product": string
}

404 - Missing Parameters

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

404 - License not found

{
  "success": false,
  "message": "License not found",
  "code": 404
}

401 - Invalid API Key

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

Previous/license/createNext/license/check

Last updated 7 months ago