action trakt_get_items_on_a_personal_list { label: "Get items on a personal list" description: "#### 🔓 OAuth Optional 📄 Pagination Optional ✨ Extended Info 😁 Emojis\n\nGet all items on a personal list. Items can be a `movie`, `show`, `season`, `episode`, or `person`. You can optionally specify the `type` parameter with a single value or comma delimited string for multiple item types.\n\n#### Notes\n\nEach list item contains a `notes` field with text entered by the user.\n\n#### Sorting Headers\n\nAll list items are sorted by ascending `rank`. We also send `X-Sort-By` and `X-Sort-How` headers which can be used to custom sort the list _**in your app**_ based on the user's preference. Values for `X-Sort-By` include `rank`, `added`, `title`, `released`, `runtime`, `popularity`, `percentage`, `votes`, `my_rating`, `random`, `watched`, and `collected`. Values for `X-Sort-How` include `asc` and `desc`." provider: trakt method: GET path: "/users/{id}/lists/{list_id}/items/{type}" encoding: json input: { type: "object" properties: { id: { type: "string" } list_id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["movie", "show", "season", "episode", "person"] } } required: ["id", "list_id", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }