Skip to main content
POST
/
key
/
activate
Activate a license key
curl --request POST \
  --url https://api.keymint.dev/key/activate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "productId": "<string>",
  "licenseKey": "<string>",
  "hostId": "<string>",
  "deviceTag": "<string>"
}'
{
  "code": 0,
  "message": "License valid",
  "licenseeName": "License Test Customer",
  "licenseeEmail": "license-1756752346942@example.com"
}

Authorizations

Authorization
string
header
required

Access token for API authentication

Body

application/json
productId
string
required
licenseKey
string
required
hostId
string
deviceTag
string

Response

200 - application/json

License key activated successfully

code
integer
message
string
licenseeName
string
licenseeEmail
string<email>
I