Skip to main content

Reseller API

This section covers one thing: automating license management from your own systems.

If you sell scripts and want your store, your Discord bot or your back office to issue a license the moment an order is paid — and to suspend it the moment a customer charges back — this is the API you need.

What you can automate

OperationEndpoint
Create a licensePOST /api/reseller/licenses
Edit a licensePATCH /api/reseller/licenses/:key
Suspend or restore a licensePOST /api/reseller/licenses/:key/revoke
Delete a licenseDELETE /api/reseller/licenses/:key

Base URL and conventions

All endpoints are relative to:

https://api.nexalab.fr
  • Requests and responses are JSON (Content-Type: application/json).
  • Every request carries your reseller key — see Authentication.
  • Successful responses always include "ok": true.
  • Failures return a stable machine-readable error code plus a human message. Branch on error, display message.

Quick start

Issue a license in one call:

curl -X POST https://api.nexalab.fr/api/reseller/licenses \
-H "X-Reseller-Key: $RESELLER_KEY" \
-H "Content-Type: application/json" \
-d '{
"scriptId": "nx-garage",
"maxSlots": 1,
"note": "Order #1042",
"discordId": "987654321098765432"
}'
{
"ok": true,
"license": {
"key": "LIC-8F3A-B1C0-D4E5",
"scriptId": "nx-garage",
"maxSlots": 1,
"note": "Order #1042",
"discordId": "987654321098765432",
"expiresAt": null,
"revoked": false,
"createdAt": "2026-07-28T12:00:00.000Z"
}
}

Hand license.key to your customer. That's the whole flow.

A typical integration

payment confirmed → POST /api/reseller/licenses (note = order id)
customer needs +1 srv → PATCH /api/reseller/licenses/:key {"maxSlots": 2}
subscription renewed → PATCH /api/reseller/licenses/:key {"expiresAt": "…"}
chargeback / abuse → POST /api/reseller/licenses/:key/revoke
dispute resolved → POST /api/reseller/licenses/:key/revoke {"revoked": false}
erasure request → DELETE /api/reseller/licenses/:key

Need a key first? Create one from the reseller interface on customer.nexalab.fr — see Authentication.