Deactivate a license key instance.
Scopes: license_keys:write
license_keys:write
Python
from polar_sdk import Polar with Polar( access_token="<YOUR_BEARER_TOKEN_HERE>", ) as polar: polar.license_keys.deactivate(request={ "key": "<key>", "organization_id": "<value>", "activation_id": "<value>", }) # Use the SDK ...
{ "error": "<string>", "detail": "<string>" }
You can generate an Organization Access Token from your organization's settings.
License key activation deactivated.
Was this page helpful?