Under Integrations > Connected Integrations > Trello >Settings, fill out your credentials in their respective sections:
API Key: Found under API Key > API Key.
API Secret: Found under API Key > API Secret.
Permissions: Select the scopes you’ve requested for your application. For a list of recommended scopes, please view this integration within your Paragon dashboard. View dashboard.
Press the purple “Save Changes” button to save your credentials.
Note: Leaving the API Key and API Secret blank will use Paragon development keys.
Once your users have connected their Trello account, you can use the Paragon SDK to access the Trello API on behalf of connected users.See the Trello REST API documentation for their full API reference.Any Trello API endpoints can be accessed with the Paragon SDK as shown in this example
JavaScript
Copy
Ask AI
// You can find your project ID in the Overview tab of any Integration.// Authenticate the userparagon.authenticate(<ProjectID>, <Paragon User Token>);// Get a boardawait paragon.request("trello", "/boards/<Board ID>", { method: “GET”,});// Create a new cardawait paragon.request("trello", "/cards", method: “POST”, body: { idList: “<List ID>”, name: “New task”, desc: “Integrate all productivity apps using Paragon” }});
Webhook triggers can be used to run workflows based on events in your users’ Trello account. For example, you might want to trigger a workflow whenever Cards are updated to sync your users’ Trello Cards to your application in real-time.
You can find the full list of Webhook Triggers for Trello below: