action trakt_get_all_show_certifications { label: "Get all show certifications" description: "Returns all content certifications for a show, including the country." provider: trakt method: GET path: "/shows/{id}/certifications" encoding: json input: { type: "object" properties: { id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }