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/Webhooks

Create a webhook

POSThttps://api.evora.lol/api/developer-api/apps/{appId}/webhooks
Requires scopewebhooks:write

Subscribe to all or to specific events. Note that license.used fires for every redemption path — loader, panel and Developer API — with a source field identifying which. Guard against double-handling.

Path parameters
appIdrequired
string (uuid)
Application UUID. App-scoped keys may only use their own application.
Body
id
string (uuid)
name
string
url
string (uri)
events
enum[]
Event names, or all. The subscription.* and hwid.reset events exist so a customer portal can mirror entitlement state without polling. Note there is no subscription.expired: expiry is not an action anything performs, it is expires_at passing while nobody is looking. Derive it from the expiry field, or read subscription.active from the authenticate endpoints, which apply the same rule the SDK does.
enabled
boolean
Request
{
  "name": "discord-relay",
  "url": "https://lunar.com/hooks/evora",
  "events": [
    "license.used",
    "user.banned"
  ],
  "enabled": true
}
Responses
201Created.
json
{
  "webhook": {
    "id": "5d3e8b17-9c24-4a06-b7f5-1e8a2c6d40b9",
    "name": "Panel sync",
    "url": "https://panel.example.com/hooks/evora",
    "events": [
      "user.register",
      "license.used"
    ],
    "enabled": true
  }
}

More in Webhooks

  • getList webhooks
  • getGet a webhook
  • putUpdate a webhook
  • deleteDelete a webhook
  • postFire a test delivery
  • getRead the event stream (catch-up)

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