Authentication

This provider requires authentication.

  • api_key: Trello API Key (required: True, sensitive: True)
  • api_token: Trello API Token (required: True, sensitive: True)

In workflows

This provider can be used in workflows.

As “step” to query data, example:

steps:
    - name: Query trello
      provider: trello
      config: "{{ provider.my_provider_name }}"
      with:
        board_id: {value}  # Trello board ID
        filter: {value}  # Trello action filter

Check the following workflow example:

Connecting with the Provider

  1. Go to https://trello.com/power-ups/admin to create custom power-up.
  2. Create new power-up and add basic details like name, email address, etc.
  3. Once it is created, navigate inside power-up and go to API Key section.
  4. There click on Generate a new API key and it will generate API Key, that will be used as api_key.
  5. For generating api_token, there is option to generate Token manually, click on that and authorize the application.

Notes