> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Card

> Create a card in a Trello list.

**Create Card** adds a card to a Trello list and can assign labels, members,
dates, and an initial position.

## Inputs

| Input                   | Type            | Required | Description                                                  |
| ----------------------- | --------------- | -------- | ------------------------------------------------------------ |
| **Third-party account** | Trello account  | Yes      | An account with write access to the board.                   |
| **List ID**             | String          | Yes      | The destination Trello list.                                 |
| **Name**                | String          | Yes      | The card name.                                               |
| **Description**         | String          | No       | The card description.                                        |
| **Labels**              | List of strings | No       | Label IDs, names, or colors. Matching is case-insensitive.   |
| **Members**             | List of strings | No       | Member IDs, usernames, or full names. Matching ignores case. |
| **Position**            | Choice          | No       | Put the card at the `top` or `bottom`. Defaults to `bottom`. |
| **Due**                 | Date            | No       | The card due date.                                           |
| **Start**               | Date            | No       | The card start date.                                         |
| **Due Complete**        | Boolean         | No       | Whether the due date is complete. Defaults to off.           |

## Outputs

| Output      | Type   | Description                                 |
| ----------- | ------ | ------------------------------------------- |
| **Card**    | Object | The created card and its normalized fields. |
| **Card ID** | String | Trello's identifier for the created card.   |

**Card** exposes the card's name, description, archived state, board and list
IDs, URLs, position, dates, member IDs, label IDs, and last activity time.

<Note>
  Label colors and full member names can be ambiguous. Use IDs when more than
  one board label or member could match.
</Note>
