action trakt_get_personal_list { label: "Get personal list" description: "#### 🔓 OAuth Optional 😁 Emojis\n\nReturns a single personal list. Use the [**/users/:id/lists/:list_id/items**](#reference/users/list-items) method to get the actual items this list contains." provider: trakt method: GET path: "/users/{id}/lists/{list_id}" encoding: json input: { type: "object" properties: { id: { type: "string" } list_id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id", "list_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }