action tvmaze_put_scrobble_episodes_episode_id { label: "Mark an episode as acquired or watched based on its ID" description: "This endpoint can be used by all users, even without premium" provider: tvmaze method: PUT path: "/scrobble/episodes/{episode_id}" encoding: json output: { type: "object" properties: { _embedded: { type: "object" properties: { episode: { type: "object" } } } episode_id: { type: "integer" } marked_at: { type: "integer" description: "Epoch timestamp for when the user watched the episode, or 0 for unknown." } type: { description: "0 for watched, 1 for acquired, 2 for skipped" type: "object" } } } }