action tvmaze_post_auth_poll { label: "Poll whether an authentication request was confirmed" description: "Using the token acquired in the `start` endpoint, you can start polling this endpoint once every 10 seconds.\n\nWhen the user has confirmed the authentication request on their end, this endpoint will return the user's API key that you can use in subsequent authenticated endpoints. Note that it'll do so only once, subsequent requests after the initial 200 response will return a 404.\n\nFor as long as the user did not yet confirm their authentication request, this endpoint will return a 403.\n" provider: tvmaze method: POST path: "/auth/poll" encoding: json input: { type: "object" properties: { token: { type: "string" } } } output: { type: "object" properties: { apikey: { type: "string" description: "The user's API key" } username: { type: "string" description: "The user's username" } } } }