from polar_sdk import Polar
with Polar(
access_token="<YOUR_BEARER_TOKEN_HERE>",
) as polar:
res = polar.files.update(id="<value>", file_patch={})
# Handle response
print(res)
from polar_sdk import Polar
with Polar(
access_token="<YOUR_BEARER_TOKEN_HERE>",
) as polar:
res = polar.files.update(id="<value>", file_patch={})
# Handle response
print(res)