action trakt_get_all_lists_a_user_can_collaborate_on { label: "Get all lists a user can collaborate on" description: "#### 🔓 OAuth Optional\n\nReturns all lists a user can collaborate on. This gives full access to add, remove, and re-order list items. It essentially works just like a list owned by the user, just make sure to use the correct list owner `user` when building the API URLs." provider: trakt method: GET path: "/users/{id}/lists/collaborations" 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 } }