Prefer using email? Say hi at hello@moveshelf.com
## README: this example shows how we can delete a trial from Moveshelf
# using the Moveshelf API.
# Delete a trial (clip) by ID
clip_id = "<clipId>" # clip["id"]
result = api.deleteClip(clip_id)
if result:
print(f"Trial {clip_id} deleted successfully")
else:
print(f"Failed to delete trial {clip_id}")