Skip to main content
POST
/
license
/
deactivate
Deactivate License
curl --request POST \
  --url https://api.kelviq.com/api/v1/license/deactivate/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "licenseKey": "KLVQ-PRO-1234-ABCD-9999",
  "instanceId": "8f3e2b1a-5c6d-4e9f-8a0b-1c2d3e4f5g6h"
}
'
{
  "message": "License instance deactivated successfully.",
  "deactivatedAt": "2026-01-27T10:35:00Z"
}

Authorizations

Authorization
string
header
required

The Server API Key obtained from the kelviq application. Pass as a Bearer token in the Authorization header. Example: 'Authorization: Bearer YOUR_API_KEY'

Body

application/json
licenseKey
string
required
instanceId
string<uuid>
required

Response

Deactivation successful

message
string
deactivatedAt
string<date-time>