trello.getCustomField retrieves one Custom Field definition.
automations/get-trello-custom-field.automation.ts
customFieldId. Optional second argument { account } selects a Trello binding. Returns Signal<TrelloCustomField>.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get a Trello Custom Field definition.
trello.getCustomField retrieves one Custom Field definition.
import { automation, onDashboardRun } from "automate.ax"
import { trello } from "automate.ax/trello"
export default automation("Get Trello Custom Field", () => {
onDashboardRun({ title: "Get Trello Custom Field" })
trello.getCustomField({ customFieldId: "custom-field-id" })
})
customFieldId. Optional second argument { account } selects a Trello binding. Returns Signal<TrelloCustomField>.