from polar_sdk import Polar
with Polar(
access_token="<YOUR_BEARER_TOKEN_HERE>",
) as polar:
res = polar.license_keys.get_activation(id="<value>", activation_id="<value>")
# Handle response
print(res)
from polar_sdk import Polar
with Polar(
access_token="<YOUR_BEARER_TOKEN_HERE>",
) as polar:
res = polar.license_keys.get_activation(id="<value>", activation_id="<value>")
# Handle response
print(res)