{"id":18780612,"url":"https://github.com/simplicitesoftware/module-trello","last_synced_at":"2025-12-19T00:30:17.196Z","repository":{"id":80897317,"uuid":"233144704","full_name":"simplicitesoftware/module-trello","owner":"simplicitesoftware","description":"Trello integraton examples for Simplicité","archived":false,"fork":false,"pushed_at":"2022-06-09T12:13:30.000Z","size":232,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-29T10:44:48.404Z","etag":null,"topics":["low-code","simplicite","trello","trello-api"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simplicitesoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-10T23:03:07.000Z","updated_at":"2021-10-01T16:18:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"c3c194e5-c5a8-474b-b44d-08e2a92782ee","html_url":"https://github.com/simplicitesoftware/module-trello","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-trello","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-trello/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-trello/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-trello/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplicitesoftware","download_url":"https://codeload.github.com/simplicitesoftware/module-trello/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239697207,"owners_count":19682371,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["low-code","simplicite","trello","trello-api"],"created_at":"2024-11-07T20:27:19.756Z","updated_at":"2025-12-19T00:30:17.114Z","avatar_url":"https://github.com/simplicitesoftware.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\n ___ _            _ _    _ _    __\n/ __(_)_ __  _ __| (_)__(_) |_ /_/\n\\__ \\ | '  \\| '_ \\ | / _| |  _/ -_)\n|___/_|_|_|_| .__/_|_\\__|_|\\__\\___|\n            |_| \n--\u003e\n![](https://docs.simplicite.io//logos/logo250.png)\n* * *\n\n`Trello` module definition\n==========================\n\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=simplicite-modules-Trello\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=simplicite-modules-Trello)\n\n### Introduction\n\n**Trello** integration examples:\n\n- A business object that synchronizes with Trello cards (using a webhook for incoming updates from Trello)\n- A Trello client external object\n\n### Import\n\nTo import this module:\n\n- Create a module named `Trello`\n- Set the settings as:\n\n```json\n{\n\t\"type\": \"git\",\n\t\"origin\": {\n\t\t\"uri\": \"https://github.com/simplicitesoftware/module-trello.git\"\n\t}\n}\n```\n\n- Click on the _Import module_ button\n\n### Configure\n\nThere is 1 system parameters to configure:\n\n- The `TRELLO_SERVICE` in which you must set your Trello API key, secret, token, the target **Board** ID and its default **List** ID that you want to interact with\n\n\u003e **Note**: it is possible to ovveride these default parameters per user using corresponding user parameters.\n\n`TrelloCardExample` business object definition\n----------------------------------------------\n\nTrello card example:\n\n- On record creation it creates a Trello card and stores its ID\n- On record update it updates the Trello card corresponding to the stored ID\n- On record deletion it deletes the Trello card corresponding to the stored ID\n\nThis object uses the settings stored in the `TRELLO_CARDEX_SETTINGS` system parameter.\n\n**NOTE**: this object registers (creates or updates) a Trello webhook when loading\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `trelloCardExName`                                           | char(100)                                | yes*     | yes       |          | Card name                                                                        |\n| `trelloCardExDescription`                                    | text(1000000)                            |          | yes       |          | Card description                                                                 |\n| `trelloCardExCardId`                                         | char(50)                                 |          |           |          | Card ID                                                                          |\n\n`TrelloClientExample` external object definition\n------------------------------------------------\n\nTrello client example:\n\n- From a given board ID it retreives the board's lists\n- For each lists it retreives the list's cards\n\n\n`TrelloWebhook` external object definition\n------------------------------------------\n\nFor this webhook to be registred by Trello, you need to make an API call:\n\n```\ncurl -X POST -H \"Content-Type: application/json\" https://api.trello.com/1/tokens/\u003ctoken\u003e/webhooks/ -d '{\n  \"key\": \"\u003ckey\u003e\",\n  \"callbackURL\": \"https://\u003cbase URL\u003e/ext/TrelloWebhook\",\n  \"idModel\":\"\u003cboard ID\u003e\",\n  \"description\": \"Demo webhook\"\n}'\n```\n\nTo list existing webhooks:\n\n```curl\ncurl -s https://api.trello.com/1/tokens/\u003ctoken\u003e/webhooks?key=\u003ckey\u003e\n```\n\n**NOTE**: This is done **automatically** by the `TrelloCardExample` business object.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplicitesoftware%2Fmodule-trello","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplicitesoftware%2Fmodule-trello","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplicitesoftware%2Fmodule-trello/lists"}