Trello
Trello is a visual collaboration and project management platform that uses boards, lists, and cards to help teams organize work, track tasks, and manage projects. This integration provides comprehensive access to Trello's organizational structure, enabling users to query and analyze boards, cards, lists, members, notifications, organizations, and user activities across their Trello workspace.
| Category | IT service management |
| Direction | Query source |
| Sign-in | API Key and Token |
| Query languages | SQLite |
| Tables | 13 |
| Query templates | 77 |
| Website | trello.com |
Before you start
Huntbase signs in to Trello with API Key and Token. Create the credential in Trello first, then keep it to hand for the Connect step.
- Go to
https://trello.com/apps/adminand open your Power-Up. An API key is tied to a Power-Up, so create one first if you don't have one. - On the Trello Auth tab, select Generate a new API Key and copy the key.
- To generate a read-only token, open
https://trello.com/1/authorize?expiration=never&scope=read&response_type=token&key=<your API key>and allow access. - Copy the token from the page you're redirected to.
Permissions:
readscope
- The token's
expirationcan be1hour,1day,30days, ornever. A short expiration breaks the connection when the token lapses. - The key and token act with the permissions of the Trello user who authorized them.
For the vendor's own instructions, see Trello API authorization guide.
Use a dedicated, read-only credential for Huntbase where the product allows it. Huntbase only needs to read.
Connect Trello
- Go to Connections and click New connection, or click New connection on the Trello product page.
- On Product, pick Trello and choose the Owner.
- On Details, give the connection a Name and, optionally, a Description.
- On Connect, fill in the settings and credentials described below.
- On Verify, review the summary and click Create & check.
For everything else on the setup page — saving a draft, I'll do this later, and what each check result means — see Connections.
Credentials
The only Method is API Key and Token. Enter a Credential label (for example Production), then fill in:
| Field | Required | Notes |
|---|---|---|
| API Key | Yes | Secret — not shown again after you save it. |
| Token | Yes | Secret — not shown again after you save it. |
Query it
Once connected, Trello can serve these languages in a query tab, and Scout can use it when you ask in Auto:
| Language | Use it for |
|---|---|
| SQLite | SQL over the 13 tables listed below, alongside every other connected source. |
Example: SQLite
Trello member basic info — List all Trello members registered in the system, including their usernames, full names, email addresses, and initials.
select
id,
username,
full_name,
email,
initials
from
trello_member;
Trello ships with 77 query templates. Find them in Library › Queries — see Query templates.
Tables
Trello adds 13 tables. Browse their columns from Schema in the query bar's ⋯ menu.
All 13 tables
| Table | Contains |
|---|---|
trello_board | Get details of all the boards in your organization. |
trello_card | Get details of all cards in a list. |
trello_list | Get details of all the lists in a board. |
trello_member | Get details of all members in an organization. |
trello_my_board | Get details of the boards you have access to. |
trello_my_member | Get details of your trello user. |
trello_my_notification | Get details of your notifications. |
trello_my_organization | Get details of my organizations you have access to. |
trello_organization | Get details of the organization. |
trello_search_board | Find boards you have access to that match search keywords. |
trello_search_card | Find cards you have access to that match search keywords. |
trello_token | Get details of the tokens. |
trello_webhook | Get details of the webhooks. |
Next steps
- Connections — health, credentials and settings after you connect
- Query languages — syntax, parameters and time ranges
- Chatting with Scout — ask questions without writing a query
- All integrations — the rest of the catalog