trello.listCards returns one page of cards from a list.
automations/list-trello-cards.automation.ts
Returns
Signal<TrelloCard[]>. Trello applies before and since. The action doesn’t fetch additional pages automatically.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List cards in one Trello list with filters and cursors.
trello.listCards returns one page of cards from a list.
import { automation, onDashboardRun } from "automate.ax"
import { trello } from "automate.ax/trello"
export default automation("List open Trello cards", () => {
onDashboardRun({ title: "List open Trello cards" })
trello.listCards({ listId: "list-id", filter: "open", limit: 100 })
})
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
listId | string | Yes | None | Stable list ID. |
filter | "open" | "closed" | "all" | No | "open" | Select active, archived, or all cards. |
limit | number | No | 100 | Integer from 1 to 1,000. |
before | string | No | None | Return cards before this card ID or timestamp. |
since | string | No | None | Return cards since this card ID or timestamp. |
Second argument: { account } | Trello account reference | No | Project default | Account used to read cards. |
Signal<TrelloCard[]>. Trello applies before and since. The action doesn’t fetch additional pages automatically.