action tvmaze_put_user_votes_shows_show_id { label: "Vote for a show" description: "Set `voted_at` to `NULL` or leave it out to use the current time." provider: tvmaze method: PUT path: "/user/votes/shows/{show_id}" encoding: json input: { type: "object" properties: { show_id: { type: "integer" } vote: { type: "integer" description: "The vote number" } voted_at: { type: "integer" description: "Epoch timestamp for when the user voted for the episode" } } } output: { type: "object" properties: { show_id: { type: "integer" } vote: { type: "integer" description: "The vote number" } voted_at: { type: "integer" description: "Epoch timestamp for when the user voted for the episode" } } } }