Skip to content

Activate a device with a license key

POST
/v1/licensing/activate
curl --request POST \
--url https://api.extport.dev/api/v1/licensing/activate \
--header 'Content-Type: application/json' \
--data '{ "code": "example", "extensionId": "example", "fingerprint": "example", "deviceInfo": "example" }'

Public endpoint called by the extension itself (via @extport/sdk). Idempotent for an already-activated fingerprint.

Media typeapplication/json
object
code
required
string
>= 1 characters <= 64 characters
extensionId
required
string
>= 1 characters <= 64 characters
fingerprint
required
string
>= 1 characters <= 128 characters
deviceInfo
Examplegenerated
{
"code": "example",
"extensionId": "example",
"fingerprint": "example",
"deviceInfo": "example"
}

Result (success flag in body)

Licensing not enabled