action tvmaze_post_auth_start { label: "Start an authentication request" description: "If you want to access the TVmaze API on behalf of a user without querying them for their password, use this endpoint.\n\nTo get started, send a POST request containing the user's email address. The response will contain a `token`, which you can use as input to the `poll` endpoint. The user will receive an email prompting them to confirm the authentication request.\n\nAlternatively, if you expect the user to be logged in to TVmaze on the device they are currently interacting with, you can set `email_confirmation` to false and redirect them to the `confirm_url` URL. If they are logged in to TVmaze, they will be able to confirm the authentication request instantly.\n" provider: tvmaze method: POST path: "/auth/start" encoding: json input: { type: "object" properties: { email: { type: "string" description: "The user's email address" } email_confirmation: { type: "boolean" description: "Whether to email the user a confirmation link" } } } output: { type: "object" properties: { confirm_url: { type: "string" description: "URL where the user can confirm the authentication request" } token: { type: "string" description: "Authentication token to use in the `poll` endpoint" } } } }