action trakt_get_following { label: "Get following" description: "#### 🔓 OAuth Optional ✨ Extended Info\n\nReturns all user's they follow including when the relationship began." provider: trakt method: GET path: "/users/{id}/following" 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 } }