Scroll
EvoraDocs
Get started
C++ SDK
REST API
Manage
Endpoint reference
All endpoints
GETPlan quota and current usage
GETList applicationsPOSTCreate an applicationGETGet an applicationPUTUpdate an applicationDELETEDelete an application
GETApplication statisticsGETExtended overviewGETLogin activity by dayGETUser growth over timeGETLicense status breakdownGETSession trends
GETList licensesPOSTGenerate licensesGETGet a licensePUTUpdate a licenseDELETEDelete a licensePOSTBan a licensePOSTUnban a licensePOSTReset a license HWIDPOSTFreeze a licensePOSTResume a frozen licensePOSTAdjust license expiry by a signed deltaPOSTBulk license actions
GETLook up a customer by usernameGETList customersPOSTCreate a customerGETGet a customerPUTUpdate a customerDELETEDelete a customerPOSTMint a password-reset tokenPOSTConsume a reset token and set the new passwordPOSTBan a customerPOSTUnban a customerPOSTReset a customer's HWIDGETRead a customer's two-factor stateDELETEReset a customer's two-factor authenticationPOSTReset a customer's device bindingPOSTMint a one-time SDK login token (panel SSO)POSTRedeem a license key on a customer's behalfPOSTBulk customer actions
POSTAuthenticate a customer by license keyPOSTAuthenticate a customer by username and password
GETList a customer's subscriptionsPOSTGrant a subscription directlyDELETERemove a subscriptionPOSTFreeze a subscriptionPOSTResume a frozen subscriptionPOSTExtend a subscription by days
GETList tiersPOSTCreate a tierPUTUpdate a tierDELETEDelete a tier
GETList app variablesPOSTCreate or update a variableDELETEDelete all app variablesGETGet a variablePUTUpdate a variableDELETEDelete a variableGETList every user variable in the applicationGETList one customer's variablesPOSTSet a customer variableDELETEDelete all of a customer's variablesDELETEDelete a customer variable
GETList webhooksPOSTCreate a webhookGETGet a webhookPUTUpdate a webhookDELETEDelete a webhookPOSTFire a test deliveryGETRead the event stream (catch-up)
GETList blacklist entriesPOSTAdd a blacklist entryDELETERemove a blacklist entryGETList whitelist entriesPOSTAdd a whitelist entryDELETERemove a whitelist entry
GETList live sessionsDELETEKill a sessionPOSTKill every live session
GETList logsGETLog statistics
GETList sellersPOSTCreate a sellerGETGet a sellerPUTUpdate a sellerDELETEDelete a sellerPOSTAdd seller balance
GETList clientsPOSTCreate a clientPUTUpdate a clientDELETEDelete a clientGETList a client's application accessPOSTGrant application accessDELETERevoke application access
GETList entitlementsPOSTCreate an entitlementPUTUpdate an entitlementDELETEDelete an entitlementGETList entitlements attached to a tierPOSTAttach an entitlement to a tierGETResolve a customer's entitlements
GETList geo rulesPOSTAdd a geo ruleDELETERemove a geo rulePUTEnable or disable geo restrictions
GETList active leasesDELETERevoke a leaseGETSeat usage for a customer
Docs/API reference/Sellers

Create a seller

POSThttps://api.evora.lol/api/developer-api/apps/{appId}/sellers
Requires scopesellers:write
Path parameters
appIdrequired
string (uuid)
Application UUID. App-scoped keys may only use their own application.
Body
usernamerequired
string
passwordrequired
string
balance
object
keyLevels
string
canCreateLicenses
boolean
maxLicenses
integer
enabled
boolean
expiresAt
string (date-time)
When this seller loses access. null (or omitted) means lifetime. Enforced at every gate — an expired seller cannot sign in, use the reseller API, or mint licences, and gets seller_expired rather than seller_disabled so a shop can tell a lapsed renewal apart from a suspension.
Responses
201Created.
json
{
  "seller": {
    "id": "6c9e2a74-1f58-4b03-9d76-4a1c8e5b2073",
    "username": "reseller_one",
    "balance_day": 10,
    "balance_week": 4,
    "balance_month": 2,
    "balance_lifetime": 0,
    "key_levels": "1,2",
    "can_create_licenses": true,
    "max_licenses": 500,
    "licenses_created": 118,
    "enabled": true,
    "expires_at": "2026-12-01T00:00:00.000Z"
  }
}

More in Sellers

  • getList sellers
  • getGet a seller
  • putUpdate a seller
  • deleteDelete a seller
  • postAdd seller balance

Base URL https://api.evora.lol/api/developer-api · full spec at developer-api.yaml · back to the docs