action trakt_get_the_attached_media_item { label: "Get the attached media item" description: "#### ✨ Extended Info\n\nReturns the media item this comment is attached to. The media type can be `movie`, `show`, `season`, `episode`, or `list` and it also returns the standard media object for that media type." provider: trakt method: GET path: "/comments/{id}/item" encoding: json input: { type: "object" properties: { id: { type: "integer" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }