You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
frompositimportconnectclient=connect.Client()
content=client.content.get(...)
# GET https://connect.company.com/content/{guid}/__thumbnail__# Cache the thumbnailthumbnail=content.thumbnail# PUT /v1/content/{guid}/thumbnailthumbnail=content.create_thumbnail(...)
# Remove the cached thumbnail.# The next get operation reads from the servercontent.reset_thumbnail()
# Same as....# >>> content.reset_thumbnail()# >>> thumbnail = content.thumbnailthumbnail=content.reload_thumbnail()
# DELETE /v1/content/{guid}/thumbnailthumbnail.destroy()
The text was updated successfully, but these errors were encountered:
Content Thumbnail API
v0.6.0 Proposal
The text was updated successfully, but these errors were encountered: