### Batch GET Request Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-batch This example demonstrates how to construct a batch GET request using cURL. Ensure you replace {urls}, APIKey, and APIToken with your actual values. ```curl curl --request GET \ --url 'https://api.trello.com/1/batch?urls={urls}&key=APIKey&token=APIToken' ``` -------------------------------- ### Example Response for Get Lists on a Board Source: https://developer.atlassian.com/cloud/trello/rest/api-group-boards An example JSON response when successfully retrieving lists from a Trello board. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "name": "Things to buy today", "closed": true, "pos": 2154, "softLimit": "", "idBoard": "", "subscribed": true, "limits": { "attachments": { "perBoard": {} } } } ] ``` -------------------------------- ### Example Response for Get Member's Saved Searches Source: https://developer.atlassian.com/cloud/trello/rest/api-group-members Shows the structure of a successful JSON response when retrieving a member's saved searches. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "name": "My Cards", "query": "@me", "pos": "top" } ] ``` -------------------------------- ### Example Card Response (JSON) Source: https://developer.atlassian.com/cloud/trello/rest/api-group-actions/#api-group-actions This is a sample JSON response for a successful request to get a card's details. It includes various properties like ID, name, description, and associated board and list information. ```json { "id": "5abbe4b7ddc1b351ef961414", "address": "", "badges": { "attachmentsByType": { "trello": { "board": 2154, "card": 2154 } }, "location": true, "votes": 2154, "viewingMemberVoted": false, "subscribed": false, "fogbugz": "", "checkItems": 0, "checkItemsChecked": 0, "comments": 0, "attachments": 0, "description": true, "due": "", "start": "", "dueComplete": true }, "cardRole": "mirror", "checkItemStates": [ "" ], "closed": true, "coordinates": "", "creationMethod": "", "dateLastActivity": "2019-09-16T16:19:17.156Z", "desc": "πŸ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", "descData": { "emoji": {} }, "due": "", "dueReminder": "", "idBoard": "5abbe4b7ddc1b351ef961414", "idChecklists": [ { "id": "5abbe4b7ddc1b351ef961414" } ], "idLabels": [ { "id": "5abbe4b7ddc1b351ef961414", "idBoard": "5abbe4b7ddc1b351ef961414", "name": "Overdue", "color": "yellow" } ], "idList": "5abbe4b7ddc1b351ef961414", "idMembers": [ "5abbe4b7ddc1b351ef961414" ], "idMembersVoted": [ "5abbe4b7ddc1b351ef961414" ], "idShort": 2154, "labels": [ "5abbe4b7ddc1b351ef961414" ], "limits": { "attachments": { "perBoard": { "status": "ok", "disableAt": 36000, "warnAt": 32400 } } }, "locationName": "", "manualCoverAttachment": false, "name": "πŸ‘‹ What? Why? How?", "pos": 65535, "shortLink": "H0TZyzbK", "shortUrl": "https://trello.com/c/H0TZyzbK", "subscribed": false, "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", "cover": { "color": "yellow", "idUploadedBackground": true, "size": "normal", "brightness": "light", "isTemplate": false } } ``` -------------------------------- ### Get Memberships of a Board (Node.js) Source: https://developer.atlassian.com/cloud/trello/rest/api-group-boards This Node.js example demonstrates how to fetch board membership details using the Trello API. It requires the 'trello-api' library and your API credentials. ```javascript const trello = require('trello-api'); const client = new trello.API({ key: 'APIKey', token: 'APIToken' }); client.getBoardMemberships(boardId) .then(memberships => { console.log(memberships); }) .catch(error => { console.error('Error fetching memberships:', error); }); ``` -------------------------------- ### Example Response for Create a List on a Board Source: https://developer.atlassian.com/cloud/trello/rest/api-group-boards An example JSON response when successfully creating a new list on a Trello board. ```json { "id": "5abbe4b7ddc1b351ef961414", "name": "Things to buy today", "closed": true, "pos": 2154, "softLimit": "", "idBoard": "", "subscribed": true, "limits": { "attachments": { "perBoard": { "status": "ok", "disableAt": 36000, "warnAt": 32400 } } } } ``` -------------------------------- ### Example Member Notification Settings Response Source: https://developer.atlassian.com/cloud/trello/rest/api-group-members This is an example JSON response for a member's notification channel settings. ```json [ { "id": "5dc591ac425f2a223aba0a8e", "idMember": "5abbe4b7ddc1b351ef961414", "blockedKeys": [ "notification_comment_card" ], "channel": "email" } ] ``` -------------------------------- ### Get Board for Action - JSON Response Source: https://developer.atlassian.com/cloud/trello/rest/api-group-actions This is an example of a successful JSON response when retrieving board details for an action. It includes various properties of the board such as its ID, name, description, and preferences. ```json { "id": "5abbe4b7ddc1b351ef961414", "name": "Trello Platform Changes", "desc": "Track changes to Trello's Platform on this board.", "descData": "", "closed": false, "idMemberCreator": "5abbe4b7ddc1b351ef961414", "idOrganization": "5abbe4b7ddc1b351ef961414", "pinned": false, "url": "https://trello.com/b/dQHqCohZ/trello-platform-changelog", "shortUrl": "https://trello.com/b/dQHqCohZ", "prefs": { "permissionLevel": "org", "hideVotes": true, "voting": "disabled", "comments": "", "selfJoin": true, "cardCovers": true, "isTemplate": true, "cardAging": "pirate", "calendarFeedEnabled": true, "background": "5abbe4b7ddc1b351ef961414", "backgroundImage": "", "backgroundImageScaled": [ { "width": 100, "height": 64, "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/100x64/abc/photo-123.jpg" } ], "backgroundTile": true, "backgroundBrightness": "dark", "backgroundBottomColor": "#1e2e00", "backgroundTopColor": "#ffffff", "canBePublic": true, "canBeEnterprise": true, "canBeOrg": true, "canBePrivate": true, "canInvite": true }, "labelNames": { "green": "Addition", "yellow": "Update", "orange": "Deprecation", "red": "Deletion", "purple": "Power-Ups", "blue": "News", "sky": "Announcement", "lime": "Delight", "pink": "REST API", "black": "Capabilties" }, "limits": { "attachments": { "perBoard": { "status": "ok", "disableAt": 36000, "warnAt": 32400 } } }, "starred": true, "memberships": "", "shortLink": "", "subscribed": true, "powerUps": "", "dateLastActivity": "", "dateLastView": "", "idTags": "", "datePluginDisable": "", "creationMethod": "", "ixUpdate": 2154, "templateGallery": "", "enterpriseOwned": true } ``` -------------------------------- ### Example Response for Enabled Power-Ups Source: https://developer.atlassian.com/cloud/trello/rest/api-group-boards An example JSON response showing the ID of an enabled Power-Up on a board. ```json [ { "id": "5abbe4b7ddc1b351ef961414" } ] ``` -------------------------------- ### Get Memberships of a Board (PHP) Source: https://developer.atlassian.com/cloud/trello/rest/api-group-boards A PHP example for fetching board membership details via the Trello API. This code assumes you have initialized the Trello client with your credentials. ```php $trelloApi->getBoardMemberships($boardId, $apiKey, $apiToken); ``` -------------------------------- ### Example Response for Get Custom Field Items Source: https://developer.atlassian.com/cloud/trello/rest/api-group-cards This is an example of the JSON response structure when retrieving custom field items for a card. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "value": { "checked": "true" }, "idCustomField": "5abbe4b7ddc1b351ef961414", "idModel": "5abbe4b7ddc1b351ef961414", "modelType": "card" } ] ``` -------------------------------- ### Example Board Data Structure Source: https://developer.atlassian.com/cloud/trello/rest/api-group-members An example JSON response structure for a board a member belongs to, including details like ID, name, description, and preferences. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "name": "Trello Platform Changes", "desc": "Track changes to Trello's Platform on this board.", "descData": "", "closed": false, "idMemberCreator": "5abbe4b7ddc1b351ef961414", "idOrganization": "5abbe4b7ddc1b351ef961414", "pinned": false, "url": "https://trello.com/b/dQHqCohZ/trello-platform-changelog", "shortUrl": "https://trello.com/b/dQHqCohZ", "prefs": { "permissionLevel": "org", "hideVotes": true, "voting": "disabled", "comments": "", "selfJoin": true, "cardCovers": true, "isTemplate": true, "cardAging": "pirate", "calendarFeedEnabled": true, "background": "5abbe4b7ddc1b351ef961414", "backgroundImage": "", "backgroundImageScaled": [ {} ], "backgroundTile": true, "backgroundBrightness": "dark", "backgroundBottomColor": "#1e2e00", "backgroundTopColor": "#ffffff", "canBePublic": true, "canBeEnterprise": true, "canBeOrg": true, "canBePrivate": true, "canInvite": true }, "labelNames": { "green": "Addition", "yellow": "Update", "orange": "Deprecation", "red": "Deletion", "purple": "Power-Ups", "blue": "News", "sky": "Announcement", "lime": "Delight", "pink": "REST API", "black": "Capabilties" }, "limits": { "attachments": { "perBoard": {} } }, "starred": true, "memberships": "", "shortLink": "", "subscribed": true, "powerUps": "", "dateLastActivity": "", "dateLastView": "", "idTags": "", "datePluginDisable": "", "creationMethod": "", "ixUpdate": 2154, "templateGallery": "", "enterpriseOwned": true } ] ``` -------------------------------- ### Action Response Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-actions Example JSON response for an action, detailing its properties like ID, creator, data, type, date, and display information. ```json { "id": "5abbe4b7ddc1b351ef961414", "idMemberCreator": "5abbe4b7ddc1b351ef961414", "data": { "text": "Can never go wrong with bowie", "card": { "id": "5abbe4b7ddc1b351ef961414", "name": "Bowie", "idShort": 7, "shortLink": "3CsPkqOF" }, "board": { "id": "5abbe4b7ddc1b351ef961414", "name": "Mullets", "shortLink": "3CsPkqOF" }, "list": { "id": "5abbe4b7ddc1b351ef961414", "name": "Amazing" } }, "type": "commentCard", "date": "2020-03-09T19:41:51.396Z", "limits": { "reactions": { "perAction": { "status": "ok", "disableAt": 1000, "warnAt": 900 }, "uniquePerAction": { "status": "ok", "disableAt": 1000, "warnAt": 900 } } }, "display": { "translationKey": "action_comment_on_card", "entities": { "contextOn": { "type": "translatable", "translationKey": "action_on", "hideIfContext": true, "idContext": "5abbe4b7ddc1b351ef961414" }, "card": { "type": "card", "hideIfContext": true, "id": "5abbe4b7ddc1b351ef961414", "shortLink": "3CsPkqOF", "text": "Bowie" }, "comment": { "type": "comment", "text": "Can never go wrong with bowie" }, "memberCreator": { "type": "member", "id": "5abbe4b7ddc1b351ef961414", "username": "bobloblaw", "text": "Bob Loblaw (World)" } } }, "memberCreator": { "id": "5abbe4b7ddc1b351ef961414", "activityBlocked": false, "avatarHash": "db2adf80c2e6c26b76e1f10400eb4c45", "avatarUrl": "https://trello-members.s3.amazonaws.com/5b02e7f4e1facdc393169f9d/db2adf80c2e6c26b76e1f10400eb4c45", "fullName": "Bob Loblaw (Trello)", "idMemberReferrer": "5abbe4b7ddc1b351ef961414", "initials": "BL", "username": "bobloblaw" } } ``` -------------------------------- ### Organization Response Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-organizations This is an example of a successful JSON response when retrieving organization details. ```json { "id": "5abbe4b7ddc1b351ef961414", "name": "", "displayName": "Organization Name", "dateLastActivity": "2018-10-17T19:10:14.808Z", "prefs": { "boardVisibilityRestrict": {}, "boardDeleteRestrict": {}, "attachmentRestrictions": [ "computer" ], "permissionLevel": "private" }, "idEnterprise": "5abbe4b7ddc1b351ef961414", "offering": "trello.enterprise", "url": "https://trello.com/w/", "idBoards": [ "5abbe4b7ddc1b351ef961414" ], "memberships": [ "5abbe4b7ddc1b351ef961414" ], "premiumFeatures": [ "" ] } ``` -------------------------------- ### Organization Actions JSON Response Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-organizations This JSON represents a sample response for the 'Get Actions for Organization' endpoint, detailing various actions like comments on cards, including associated data and member information. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "idMemberCreator": "5abbe4b7ddc1b351ef961414", "data": { "text": "Can never go wrong with bowie", "card": { "id": "5abbe4b7ddc1b351ef961414", "name": "Bowie", "idShort": 7, "shortLink": "3CsPkqOF" }, "board": { "id": "5abbe4b7ddc1b351ef961414", "name": "Mullets", "shortLink": "3CsPkqOF" }, "list": { "id": "5abbe4b7ddc1b351ef961414", "name": "Amazing" } }, "type": "commentCard", "date": "2020-03-09T19:41:51.396Z", "limits": { "reactions": { "perAction": { "status": "ok", "disableAt": 1000, "warnAt": 900 }, "uniquePerAction": { "status": "ok", "disableAt": 1000, "warnAt": 900 } } }, "display": { "translationKey": "action_comment_on_card", "entities": { "contextOn": { "type": "translatable", "translationKey": "action_on", "hideIfContext": true, "idContext": "5abbe4b7ddc1b351ef961414" }, "card": { "type": "card", "hideIfContext": true, "id": "5abbe4b7ddc1b351ef961414", "shortLink": "3CsPkqOF", "text": "Bowie" }, "comment": { "type": "comment", "text": "Can never go wrong with bowie" }, "memberCreator": { "type": "member", "id": "5abbe4b7ddc1b351ef961414", "username": "bobloblaw", "text": "Bob Loblaw (World)" } } }, "memberCreator": { "id": "5abbe4b7ddc1b351ef961414", "activityBlocked": false, "avatarHash": "db2adf80c2e6c26b76e1f10400eb4c45", "avatarUrl": "https://trello-members.s3.amazonaws.com/5b02e7f4e1facdc393169f9d/db2adf80c2e6c26b76e1f10400eb4c45", "fullName": "Bob Loblaw (Trello)", "idMemberReferrer": "5abbe4b7ddc1b351ef961414", "initials": "BL", "username": "bobloblaw" } } ] ``` -------------------------------- ### Action Response Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-actions This is an example of a successful JSON response when retrieving a card associated with an action. It includes detailed properties of the card. ```json { "id": "5abbe4b7ddc1b351ef961414", "address": "", "badges": { "attachmentsByType": { "trello": { "board": 2154, "card": 2154 } }, "location": true, "votes": 2154, "viewingMemberVoted": false, "subscribed": false, "fogbugz": "", "checkItems": 0, "checkItemsChecked": 0, "comments": 0, "attachments": 0, "description": true, "due": "", "start": "", "dueComplete": true }, "cardRole": "mirror", "checkItemStates": [ "" ], "closed": true, "coordinates": "", "creationMethod": "", "dateLastActivity": "2019-09-16T16:19:17.156Z", "desc": "πŸ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", "descData": { "emoji": {} }, "due": "", "dueReminder": "", "idBoard": "5abbe4b7ddc1b351ef961414", "idChecklists": [ { "id": "5abbe4b7ddc1b351ef961414" } ], "idLabels": [ { "id": "5abbe4b7ddc1b351ef961414", "idBoard": "5abbe4b7ddc1b351ef961414", "name": "Overdue", "color": "yellow" } ], "idList": "5abbe4b7ddc1b351ef961414", "idMembers": [ "5abbe4b7ddc1b351ef961414" ], "idMembersVoted": [ "5abbe4b7ddc1b351ef961414" ], "idShort": 2154, "labels": [ "5abbe4b7ddc1b351ef961414" ], "limits": { "attachments": { "perBoard": { "status": "ok", "disableAt": 36000, "warnAt": 32400 } } }, "locationName": "", "manualCoverAttachment": false, "name": "πŸ‘‹ What? Why? How?", "pos": 65535, "shortLink": "H0TZyzbK", "shortUrl": "https://trello.com/c/H0TZyzbK", "subscribed": false, "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", "cover": { "color": "yellow", "idUploadedBackground": true, "size": "normal", "brightness": "light", "isTemplate": false } } ``` -------------------------------- ### Get Organizations of an Enterprise (JSON Response) Source: https://developer.atlassian.com/cloud/trello/rest/api-group-enterprises Example JSON response when successfully retrieving organizations for an enterprise. The response is an array of Organization objects. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "name": "", "displayName": "Organization Name", "dateLastActivity": "2018-10-17T19:10:14.808Z", "prefs": { "boardVisibilityRestrict": {}, "boardDeleteRestrict": {}, "attachmentRestrictions": [ "computer" ], "permissionLevel": "private" }, "idEnterprise": "5abbe4b7ddc1b351ef961414", "offering": "trello.enterprise", "url": "https://trello.com/w/", "idBoards": [ "5abbe4b7ddc1b351ef961414" ], "memberships": [ "5abbe4b7ddc1b351ef961414" ], "premiumFeatures": [ "" ] } ] ``` -------------------------------- ### Get Memberships of a Board (Java) Source: https://developer.atlassian.com/cloud/trello/rest/api-group-boards A Java example for retrieving board membership data from the Trello API. This code snippet assumes you have a configured Trello client object. ```java String boardId = "yourBoardId"; String apiKey = "APIKey"; String apiToken = "APIToken"; trelloClient.getBoardMemberships(boardId, apiKey, apiToken) .then(memberships -> { // Process memberships System.out.println(memberships); }) .catch(error -> { System.err.println("Error: " + error.getMessage()); }); ``` -------------------------------- ### Trello Created Webhook Response Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-tokens Example of a successful JSON response after creating a webhook. This confirms the webhook's details, including its ID, description, and configuration. ```json { "id": "5abbe4b7ddc1b351ef961414", "description": "Board Webhook", "idModel": "5abbe4b7ddc1b351ef961414", "callbackURL": "https://mywebhookurl.com/?type=board", "active": true, "consecutiveFailures": 0, "firstConsecutiveFailDate": "" } ``` -------------------------------- ### Saved Search Response Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-members Example JSON response for a successful saved search update operation. ```json { "id": "5abbe4b7ddc1b351ef961414", "name": "My Cards", "query": "@me", "pos": "top" } ``` -------------------------------- ### Member Tokens Response Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-members Example JSON response for a successful retrieval of a member's tokens. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "identifier": "App Name", "idMember": "5abbe4b7ddc1b351ef961414", "dateCreated": "2019-10-16T14:27:17.304Z", "dateExpires": "", "permissions": [ { "idModel": "5abbe4b7ddc1b351ef961414", "modelType": "board", "read": true, "write": true } ] } ] ``` -------------------------------- ### Organization Exports Response (JSON) Source: https://developer.atlassian.com/cloud/trello/rest/api-group-organizations This is an example of a successful JSON response when retrieving organization exports. It includes details about each export's ID, status, start time, size, and URL. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "status": { "attempts": 0, "finished": false, "stage": "Export_queued" }, "startedAt": "2019-11-15T16:55:02.000Z", "size": "", "exportUrl": "" } ] ``` -------------------------------- ### Example Notification Response Source: https://developer.atlassian.com/cloud/trello/rest/api-group-notifications This is an example of a successful JSON response when retrieving a notification. It includes details about the notification type, associated card, and board. ```json { "id": "5dc591ac425f2a223aba0a8e", "unread": true, "type": "cardDueSoon", "date": "2019-11-08T16:02:52.763Z", "dateRead": "", "data": "", "card": { "id": "5abbe4b7ddc1b351ef961414", "address": "", "badges": { "attachmentsByType": { "trello": { "board": 2154, "card": 2154 } }, "location": true, "votes": 2154, "viewingMemberVoted": false, "subscribed": false, "fogbugz": "", "checkItems": 0, "checkItemsChecked": 0, "comments": 0, "attachments": 0, "description": true, "due": "", "start": "", "dueComplete": true }, "cardRole": "mirror", "checkItemStates": [ "" ], "closed": true, "coordinates": "", "creationMethod": "", "dateLastActivity": "2019-09-16T16:19:17.156Z", "desc": "πŸ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", "descData": { "emoji": {} }, "due": "", "dueReminder": "", "idBoard": "5abbe4b7ddc1b351ef961414", "idChecklists": [ { "id": "5abbe4b7ddc1b351ef961414" } ], "idLabels": [ { "id": "5abbe4b7ddc1b351ef961414", "idBoard": "5abbe4b7ddc1b351ef961414", "name": "Overdue", "color": "yellow" } ], "idList": "5abbe4b7ddc1b351ef961414", "idMembers": [ "5abbe4b7ddc1b351ef961414" ], "idMembersVoted": [ "5abbe4b7ddc1b351ef961414" ], "idShort": 2154, "labels": [ "5abbe4b7ddc1b351ef961414" ], "limits": { "attachments": { "perBoard": {} } }, "locationName": "", "manualCoverAttachment": false, "name": "πŸ‘‹ What? Why? How?", "pos": 65535, "shortLink": "H0TZyzbK", "shortUrl": "https://trello.com/c/H0TZyzbK", "subscribed": false, "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", "cover": { "color": "yellow", "idUploadedBackground": true, "size": "normal", "brightness": "light", "isTemplate": false } }, "board": { "id": "5abbe4b7ddc1b351ef961414", "name": "Trello Platform Changes", "desc": "Track changes to Trello's Platform on this board.", "descData": "", "closed": false, "idMemberCreator": "5abbe4b7ddc1b351ef961414", "idOrganization": "5abbe4b7ddc1b351ef961414", "pinned": false, "url": "https://trello.com/b/dQHqCohZ/trello-platform-changelog", "shortUrl": "https://trello.com/b/dQHqCohZ", "prefs": { "permissionLevel": "org", "hideVotes": true, "voting": "disabled", "comments": "", "selfJoin": true, "cardCovers": true, "isTemplate": true, "cardAging": "pirate", "calendarFeedEnabled": true, "background": "5abbe4b7ddc1b351ef961414", "backgroundImage": "", "backgroundImageScaled": [ {} ], "backgroundTile": true, "backgroundBrightness": "dark", "backgroundBottomColor": "#1e2e00", "backgroundTopColor": "#ffffff", "canBePublic": true, "canBeEnterprise": true, "canBeOrg": true, "canBePrivate": true, "canInvite": true }, "labelNames": { "green": "Addition", "yellow": "Update", "orange": "Deprecation", "red": "Deletion", "purple": "Power-Ups", "blue": "News", "sky": "Announcement", "lime": "Delight", "pink": "REST API", "black": "Capabilties" }, "limits": { "attachments": { "perBoard": {} } }, "starred": true, "memberships": "", "shortLink": "", "subscribed": true, "powerUps": "", "dateLastActivity": "", "dateLastView": "", "idTags": "", "datePluginDisable": "", "creationMethod": "", "ixUpdate": 2154, "templateGallery": "", "enterpriseOwned": true }, "idMemberCreator": "5abbe4b7ddc1b351ef961414", "idAction": "5abbe4b7ddc1b351ef961414", "reactions": [] } ``` -------------------------------- ### Example JSON Response for Boards Invited To Source: https://developer.atlassian.com/cloud/trello/rest/api-group-members This is an example of the JSON response structure when successfully retrieving a list of boards a member has been invited to. It includes details about each board such as its ID, name, description, URL, and preferences. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "name": "Trello Platform Changes", "desc": "Track changes to Trello's Platform on this board.", "descData": "", "closed": false, "idMemberCreator": "5abbe4b7ddc1b351ef961414", "idOrganization": "5abbe4b7ddc1b351ef961414", "pinned": false, "url": "https://trello.com/b/dQHqCohZ/trello-platform-changelog", "shortUrl": "https://trello.com/b/dQHqCohZ", "prefs": { "permissionLevel": "org", "hideVotes": true, "voting": "disabled", "comments": "", "selfJoin": true, "cardCovers": true, "isTemplate": true, "cardAging": "pirate", "calendarFeedEnabled": true, "background": "5abbe4b7ddc1b351ef961414", "backgroundImage": "", "backgroundImageScaled": [ {} ], "backgroundTile": true, "backgroundBrightness": "dark", "backgroundBottomColor": "#1e2e00", "backgroundTopColor": "#ffffff", "canBePublic": true, "canBeEnterprise": true, "canBeOrg": true, "canBePrivate": true, "canInvite": true }, "labelNames": { "green": "Addition", "yellow": "Update", "orange": "Deprecation", "red": "Deletion", "purple": "Power-Ups", "blue": "News", "sky": "Announcement", "lime": "Delight", "pink": "REST API", "black": "Capabilties" }, "limits": { "attachments": { "perBoard": {} } }, "starred": true, "memberships": "", "shortLink": "", "subscribed": true, "powerUps": "", "dateLastActivity": "", "dateLastView": "", "idTags": "", "datePluginDisable": "", "creationMethod": "", "ixUpdate": 2154, "templateGallery": "", "enterpriseOwned": true } ] ``` -------------------------------- ### Example Member JSON Response Source: https://developer.atlassian.com/cloud/trello/rest/api-group-members This is an example of the JSON response you might receive when requesting member details. It includes various properties such as ID, username, full name, and preferences. ```json { "id": "5abbe4b7ddc1b351ef961414", "activityBlocked": false, "avatarHash": "fc8faaaee46666a4eb8b626c08933e16", "avatarUrl": "https://trello-avatars.s3.amazonaws.com/fc8faaaee46666a4eb8b626c08933e16", "bio": "πŸ‘‹ I\'m a developer advocate at Trello!", "bioData": { "emoji": {} }, "confirmed": true, "fullName": "Bentley Cook", "idEnterprise": "5abbe4b7ddc1b351ef961414", "idEnterprisesDeactivated": [ "" ], "idMemberReferrer": "5abbe4b7ddc1b351ef961414", "idPremOrgsAdmin": [ "5abbe4b7ddc1b351ef961414" ], "initials": "BC", "memberType": "normal", "nonPublic": { "fullName": "Bentley Cook", "initials": "BC", "avatarUrl": "https://trello-members.s3.amazonaws.com/5b02e7f4e1facdc393169f9d/db2adf80c2e6c26b76e1f10400eb4c45", "avatarHash": "db2adf80c2e6c26b76e1f10400eb4c45" }, "nonPublicAvailable": false, "products": [ 2154 ], "url": "https://trello.com/bentleycook", "username": "bentleycook", "status": "disconnected", "aaEmail": "", "aaEnrolledDate": "", "aaId": "", "avatarSource": "gravatar", "email": "bcook@atlassian.com", "gravatarHash": "0a1e804f6e35a65ae5e1f7ef4c92471c", "idBoards": [ "5abbe4b7ddc1b351ef961414" ], "idOrganizations": [ "5abbe4b7ddc1b351ef961414" ], "idEnterprisesAdmin": [ "5abbe4b7ddc1b351ef961414" ], "limits": { "status": "ok", "disableAt": 36000, "warnAt": 32400 }, "loginTypes": [ "password" ], "marketingOptIn": { "optedIn": false, "date": "2018-04-26T17:03:25.155Z" }, "messagesDismissed": { "name": "ad-security-features", "count": "", "lastDismissed": "2019-03-11T20:19:46.809Z", "_id": "5abbe4b7ddc1b351ef961414" }, "oneTimeMessagesDismissed": [ "" ], "prefs": { "timezoneInfo": { "offsetCurrent": 360, "timezoneCurrent": "CST", "offsetNext": 300, "dateNext": "2020-03-08T08:00:00.000Z", "timezoneNext": "CDT" }, "privacy": { "fullName": "public", "avatar": "public" }, "sendSummaries": true, "minutesBetweenSummaries": 60, "minutesBeforeDeadlineToNotify": 1440, "colorBlind": true, "locale": "en-AU", "timezone": "America/Chicago", "twoFactor": { "enabled": true, "needsNewBackups": false } }, "trophies": [ "" ], "uploadedAvatarHash": "dac3ad49ff117829dd63a79bb2ea3426", "uploadedAvatarUrl": "https://trello-avatars.s3.amazonaws.com/dac3ad49ff117829dd63a79bb2ea3426", "premiumFeatures": [ "" ], "isAaMastered": false, "ixUpdate": 2154, "idBoardsPinned": [ "5abbe4b7ddc1b351ef961414" ] } ``` -------------------------------- ### Trello Organization Boards Response Example Source: https://developer.atlassian.com/cloud/trello/rest/api-group-organizations This is an example of a successful JSON response when retrieving boards for an organization. It includes details for each board such as ID, name, URL, and preferences. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "name": "Trello Platform Changes", "desc": "Track changes to Trello's Platform on this board.", "descData": "", "closed": false, "idMemberCreator": "5abbe4b7ddc1b351ef961414", "idOrganization": "5abbe4b7ddc1b351ef961414", "pinned": false, "url": "https://trello.com/b/dQHqCohZ/trello-platform-changelog", "shortUrl": "https://trello.com/b/dQHqCohZ", "prefs": { "permissionLevel": "org", "hideVotes": true, "voting": "disabled", "comments": "", "selfJoin": true, "cardCovers": true, "isTemplate": true, "cardAging": "pirate", "calendarFeedEnabled": true, "background": "5abbe4b7ddc1b351ef961414", "backgroundImage": "", "backgroundImageScaled": [ { "width": 100, "height": 64, "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/100x64/abc/photo-123.jpg" } ], "backgroundTile": true, "backgroundBrightness": "dark", "backgroundBottomColor": "#1e2e00", "backgroundTopColor": "#ffffff", "canBePublic": true, "canBeEnterprise": true, "canBeOrg": true, "canBePrivate": true, "canInvite": true }, "labelNames": { "green": "Addition", "yellow": "Update", "orange": "Deprecation", "red": "Deletion", "purple": "Power-Ups", "blue": "News", "sky": "Announcement", "lime": "Delight", "pink": "REST API", "black": "Capabilties" }, "limits": { "attachments": { "perBoard": { "status": "ok", "disableAt": 36000, "warnAt": 32400 } } }, "starred": true, "memberships": "", "shortLink": "", "subscribed": true, "powerUps": "", "dateLastActivity": "", "dateLastView": "", "idTags": "", "datePluginDisable": "", "creationMethod": "", "ixUpdate": 2154, "templateGallery": "", "enterpriseOwned": true } ] ``` -------------------------------- ### Example Custom Fields Response Source: https://developer.atlassian.com/cloud/trello/rest/api-group-boards This is an example JSON response when successfully retrieving custom fields for a board. It includes details about each custom field's properties and display settings. ```json [ { "id": "5abbe4b7ddc1b351ef961414", "idModel": "586e8f681d4fe9b06a928307", "modelType": "board", "fieldGroup": "f6177ba6839d6fff0f73922c1cea105e793fda8a1433d466104dacc0b7c56955", "display": { "cardFront": true, "name": "Priority πŸ”", "pos": "98304,", "options": [ { "id": "5abbe4b7ddc1b351ef961414", "idCustomField": "5abbe4b7ddc1b351ef961414", "value": { "text": "High" }, "color": "red", "pos": 16384 } ] }, "type": "list" } ] ```