{
  "info": {
    "name": "Trello — mcp.ai",
    "description": "REST API for the Trello MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/trello",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "trello_action_get_board_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/action/get/board/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "action",
            "get",
            "board",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Deprecated: use `get actions board by id action` instead. retrieves details for the trello board associated with a specific action id, returning board information only.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_action_get_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/action/get/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "action",
            "get",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: use `get actions by id action` instead. retrieves detailed information about a specific trello action by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"member\": \"\",\n  \"display\": \"\",\n  \"entities\": \"\",\n  \"idAction\": \"\",\n  \"memberCreator\": \"\",\n  \"member_fields\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_action_get_list_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/action/get/list/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "action",
            "get",
            "list",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves the trello list associated with a specific trello action id, for actions linked to a list. <<DEPRECATED use get_actions_list_by_id_action>>",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_boards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/boards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "boards"
          ]
        },
        "description": "Creates a new trello board; the 'name' parameter is required for creation, and various preferences can be customized or cloned from a source board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"powerUps\": \"\",\n  \"subscribed\": \"\",\n  \"prefs_voting\": \"\",\n  \"idBoardSource\": \"\",\n  \"prefs__voting\": \"\",\n  \"idOrganization\": \"\",\n  \"keepFromSource\": \"\",\n  \"prefs_comments\": \"\",\n  \"prefs_selfJoin\": \"\",\n  \"labelNames__red\": \"\",\n  \"prefs__comments\": \"\",\n  \"prefs__selfJoin\": \"\",\n  \"prefs_cardAging\": \"\",\n  \"labelNames__blue\": \"\",\n  \"prefs__cardAging\": \"\",\n  \"prefs_background\": \"\",\n  \"prefs_cardCovers\": \"\",\n  \"labelNames__green\": \"\",\n  \"prefs__background\": \"\",\n  \"prefs__cardCovers\": \"\",\n  \"prefs_invitations\": \"\",\n  \"labelNames__orange\": \"\",\n  \"labelNames__purple\": \"\",\n  \"labelNames__yellow\": \"\",\n  \"prefs__invitations\": \"\",\n  \"prefs_permissionLevel\": \"\",\n  \"prefs__permissionLevel\": \"\",\n  \"prefs__calendarFeedEnabled\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_boards_calendar_key_generate_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/boards/calendar/key/generate/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "boards",
            "calendar",
            "key",
            "generate",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Generates a new calendar key for the trello board specified by `idboard`, invalidating any previous key for that board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_boards_checklists_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/boards/checklists/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "boards",
            "checklists",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Creates a new, initially empty checklist with a given name on an existing and accessible trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_boards_email_key_generate_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/boards/email/key/generate/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "boards",
            "email",
            "key",
            "generate",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Generates a new email key for the trello board specified by idboard to enable or reset adding cards via email; this invalidates any previously existing email key for the board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_boards_labels_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/boards/labels/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "boards",
            "labels",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Creates a new label on an existing trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_boards_lists_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/boards/lists/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "boards",
            "lists",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Creates a new, empty list on a specified, existing trello board, typically used as a column or category for organizing cards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_boards_mark_as_viewed_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/boards/mark/as/viewed/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "boards",
            "mark",
            "as",
            "viewed",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Marks the trello board specified by idboard as viewed for the current user, exclusively updating its viewed status and potentially influencing its position in user-specific lists and notification sett",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_boards_power_ups_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/boards/power/ups/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "boards",
            "power",
            "ups",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Enables the power-up specified by the 'value' parameter on the board; processes one power-up enablement per call.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards"
          ]
        },
        "description": "Creates a new card in a trello list; `idlist` is required, and if `idcardsource` is used, the source card must be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"due\": \"\",\n  \"pos\": \"\",\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"idList\": \"\",\n  \"labels\": \"\",\n  \"idBoard\": \"\",\n  \"idLabels\": \"\",\n  \"idMembers\": \"\",\n  \"urlSource\": \"\",\n  \"fileSource\": \"\",\n  \"subscribed\": \"\",\n  \"idCardSource\": \"\",\n  \"keepFromSource\": \"\",\n  \"idAttachmentCover\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_actions_comments_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/actions/comments/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "actions",
            "comments",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Adds a new text comment, which can include @mentions, to a trello card specified by its id; file attachments are not supported via this action.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_attachments_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/attachments/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "attachments",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Adds an attachment to a trello card by `idcard`; specify either a `file` to upload or a `url` to link, but not both.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"file\": \"\",\n  \"name\": \"\",\n  \"idCard\": \"\",\n  \"mimeType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_checklist_check_item_by_id_card_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/checklist/check/item/by/id/card/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "checklist",
            "check",
            "item",
            "by",
            "id",
            "card",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Adds a new check item to an existing checklist on a specific trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"idCard\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_checklists_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/checklists/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "checklists",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Adds a checklist to a trello card: use `value` to add a specific existing checklist, `idchecklistsource` to create a new checklist by copying an existing one (optionally using `name` for the new check",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"value\": \"\",\n  \"idCard\": \"\",\n  \"idChecklistSource\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_id_labels_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/id/labels/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "id",
            "labels",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Adds an existing label to a trello card; `idcard` identifies the card and `value` is the id of the label to add. both card and label must already exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_id_members_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/id/members/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "id",
            "members",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Assigns a trello member to a specific trello card by card id (or short link) and member id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_labels_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/labels/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "labels",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Adds a label to an existing trello card (specified by `idcard`), defining the label by `name` and either `color` or the overriding `value` (which specifies color by name); a new label is created on th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_members_voted_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/members/voted/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "members",
            "voted",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Casts a 'yes' vote for a specified member on a trello card; a member can only vote once per card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_cards_stickers_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/cards/stickers/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "cards",
            "stickers",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Adds a sticker to a trello card, using a default sticker name (e.g., 'taco-cool') or a custom sticker id for the image, and allows specifying its position, rotation, and z-index.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": \"\",\n  \"left\": \"\",\n  \"image\": \"\",\n  \"idCard\": \"\",\n  \"rotate\": \"\",\n  \"zIndex\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_checklists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/checklists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "checklists"
          ]
        },
        "description": "Creates a new checklist on a trello card, either by name or by copying from `idchecklistsource`, targeting an `idcard` or `idboard`; this action creates only the checklist structure, not its items.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"idCard\": \"\",\n  \"idBoard\": \"\",\n  \"idChecklistSource\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_checklists_check_items_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/checklists/check/items/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "checklists",
            "check",
            "items",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Adds a new check item to a specified trello checklist; this action does not update existing check items.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"checked\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "labels"
          ]
        },
        "description": "Creates a new label with a specified name (required) and color on a trello board (idboard required); this action defines the label but does not apply it to cards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "lists"
          ]
        },
        "description": "Creates a new list on a specified trello board, with options to copy an existing list, set its position, initial state (archived/subscribed), and does not modify existing lists or move cards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"idBoard\": \"\",\n  \"subscribed\": \"\",\n  \"idListSource\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_lists_archive_all_cards_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/lists/archive/all/cards/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "lists",
            "archive",
            "all",
            "cards",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Archives all cards in a trello list; while cards can be restored via the trello interface, this action does not provide an unarchive function.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_lists_cards_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/lists/cards/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "lists",
            "cards",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Creates a new card in a trello list, which must be specified by an existing and accessible `idlist`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"due\": \"\",\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"idList\": \"\",\n  \"labels\": \"\",\n  \"idMembers\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_lists_move_all_cards_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/lists/move/all/cards/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "lists",
            "move",
            "all",
            "cards",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Moves all cards from a trello list to a *different* board; this action is irreversible, moves (not copies) cards, and empties the source list without deleting it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idList\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_members_avatar_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/members/avatar/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "members",
            "avatar",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates a trello member's avatar using a base64-encoded image; the `file` field, though schema-optional, requires valid image data for a successful update.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_members_board_backgrounds_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/members/board/backgrounds/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "members",
            "board",
            "backgrounds",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Adds a new custom board background, from an image file, to a specified trello member's collection, making it available for their use but not applying it to any board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"tile\": \"\",\n  \"idMember\": \"\",\n  \"brightness\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_members_board_stars_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/members/board/stars/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "members",
            "board",
            "stars",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Stars a trello board for a member (does not remove or list stars), optionally at a specified position; the board must exist and be accessible to the member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"idBoard\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_members_custom_board_backgrounds_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/members/custom/board/backgrounds/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "members",
            "custom",
            "board",
            "backgrounds",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Adds a new custom board background for a specified trello member; the `file` parameter (image data) is required.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"tile\": \"\",\n  \"idMember\": \"\",\n  \"brightness\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_members_custom_emoji_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/members/custom/emoji/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "members",
            "custom",
            "emoji",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Adds a new custom emoji using an image file and a unique name to a trello member's account; this emoji is member-specific and not shared across the workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"name\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_members_custom_stickers_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/members/custom/stickers/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "members",
            "custom",
            "stickers",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Uploads a custom sticker to a trello member's collection, if the member's plan allows custom stickers and respects associated limits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_members_saved_searches_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/members/saved/searches/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "members",
            "saved",
            "searches",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Creates a new saved search with a specified name, position, and query for a trello member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"query\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_notifications_all_read",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/notifications/all/read",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "notifications",
            "all",
            "read"
          ]
        },
        "description": "Marks all trello notifications for the authenticated user as read across all boards; this action is permanent and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "organizations"
          ]
        },
        "description": "Creates a new trello organization (workspace) with a `displayname` (required), and optionally a description, website, and various preferences (e.g., board visibility, member invitation restrictions).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"website\": \"\",\n  \"displayName\": \"\",\n  \"prefs__permissionLevel\": \"\",\n  \"prefs__associatedDomain\": \"\",\n  \"prefs__googleAppsVersion\": \"\",\n  \"prefs__orgInviteRestrict\": \"\",\n  \"prefs__externalMembersDisabled\": \"\",\n  \"prefs__boardVisibilityRestrict__org\": \"\",\n  \"prefs__boardVisibilityRestrict__public\": \"\",\n  \"prefs__boardVisibilityRestrict__private\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_organizations_logo_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/organizations/logo/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "organizations",
            "logo",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Sets or updates the logo for a trello organization; the provided image file must adhere to trello's format and size restrictions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"idOrg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_sessions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/sessions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "sessions"
          ]
        },
        "description": "Creates or updates a trello user session, optionally linking it to a specific board for status updates and setting the user's activity status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_add_tokens_webhooks_by_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/tokens/webhooks/by/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "tokens",
            "webhooks",
            "by",
            "token"
          ]
        },
        "description": "Creates a webhook for a trello token to monitor a trello model (`idmodel`) and send notifications to a `callbackurl`, which must be publicly accessible and able to respond to trello's head validation ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idModel\": \"\",\n  \"callbackURL\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_board_create_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/board/create/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "board",
            "create",
            "board"
          ]
        },
        "description": "<<deprecated: this action is deprecated. please use 'add boards' instead.>> creates a new trello board, requiring the 'name' parameter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"powerUps\": \"\",\n  \"subscribed\": \"\",\n  \"prefs_voting\": \"\",\n  \"idBoardSource\": \"\",\n  \"prefs__voting\": \"\",\n  \"idOrganization\": \"\",\n  \"keepFromSource\": \"\",\n  \"prefs_comments\": \"\",\n  \"prefs_selfJoin\": \"\",\n  \"labelNames__red\": \"\",\n  \"prefs__comments\": \"\",\n  \"prefs__selfJoin\": \"\",\n  \"prefs_cardAging\": \"\",\n  \"labelNames__blue\": \"\",\n  \"prefs__cardAging\": \"\",\n  \"prefs_background\": \"\",\n  \"prefs_cardCovers\": \"\",\n  \"labelNames__green\": \"\",\n  \"prefs__background\": \"\",\n  \"prefs__cardCovers\": \"\",\n  \"prefs_invitations\": \"\",\n  \"labelNames__orange\": \"\",\n  \"labelNames__purple\": \"\",\n  \"labelNames__yellow\": \"\",\n  \"prefs__invitations\": \"\",\n  \"prefs_permissionLevel\": \"\",\n  \"prefs__permissionLevel\": \"\",\n  \"prefs__calendarFeedEnabled\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_board_filter_cards_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/board/filter/cards/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "board",
            "filter",
            "cards",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Deprecated: use `get boards cards by id board by filter`. retrieves cards from a trello board using a filter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_board_get_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/board/get/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "board",
            "get",
            "by",
            "id"
          ]
        },
        "description": "Fetches comprehensive details for a specific trello board by its id; this is a read-only action. <<DEPRECATED use get_boards_by_id_board>>",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"lists\": \"\",\n  \"fields\": \"\",\n  \"labels\": \"\",\n  \"actions\": \"\",\n  \"idBoard\": \"\",\n  \"members\": \"\",\n  \"myPrefs\": \"\",\n  \"boardStars\": \"\",\n  \"checklists\": \"\",\n  \"card_fields\": \"\",\n  \"list_fields\": \"\",\n  \"memberships\": \"\",\n  \"label_fields\": \"\",\n  \"labels_limit\": \"\",\n  \"organization\": \"\",\n  \"action_fields\": \"\",\n  \"action_member\": \"\",\n  \"actions_limit\": \"\",\n  \"actions_since\": \"\",\n  \"card_stickers\": \"\",\n  \"member_fields\": \"\",\n  \"actions_format\": \"\",\n  \"membersInvited\": \"\",\n  \"actions_display\": \"\",\n  \"card_checklists\": \"\",\n  \"actions_entities\": \"\",\n  \"card_attachments\": \"\",\n  \"checklist_fields\": \"\",\n  \"memberships_member\": \"\",\n  \"organization_fields\": \"\",\n  \"action_memberCreator\": \"\",\n  \"action_member_fields\": \"\",\n  \"membersInvited_fields\": \"\",\n  \"card_attachment_fields\": \"\",\n  \"organization_memberships\": \"\",\n  \"memberships_member_fields\": \"\",\n  \"action_memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_board_get_cards_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/board/get/cards/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "board",
            "get",
            "cards",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Deprecated (use `get boards cards by id board`): retrieves cards from an existing trello board, allowing filtering and customization of fields for cards, attachments, and members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"idBoard\": \"\",\n  \"members\": \"\",\n  \"stickers\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"member_fields\": \"\",\n  \"checkItemStates\": \"\",\n  \"attachment_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_board_get_lists_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/board/get/lists/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "board",
            "get",
            "lists",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Deprecated: retrieves lists from a specified trello board; use `get boards lists by id board`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idBoard\": \"\",\n  \"card_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_card_create_and_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/card/create/and/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "card",
            "create",
            "and",
            "update"
          ]
        },
        "description": "(deprecated: use add cards) creates a new card in a trello list; `idlist` is required, and if `idcardsource` is used, the source card must be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"due\": \"\",\n  \"pos\": \"\",\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"idList\": \"\",\n  \"labels\": \"\",\n  \"idBoard\": \"\",\n  \"idLabels\": \"\",\n  \"idMembers\": \"\",\n  \"urlSource\": \"\",\n  \"fileSource\": \"\",\n  \"subscribed\": \"\",\n  \"idCardSource\": \"\",\n  \"keepFromSource\": \"\",\n  \"idAttachmentCover\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_card_get_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/card/get/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "card",
            "get",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: use `get cards by id card`. retrieves a trello card by id/shortlink, with options for related data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list\": \"\",\n  \"board\": \"\",\n  \"fields\": \"\",\n  \"idCard\": \"\",\n  \"actions\": \"\",\n  \"members\": \"\",\n  \"stickers\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"list_fields\": \"\",\n  \"board_fields\": \"\",\n  \"membersVoted\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"member_fields\": \"\",\n  \"sticker_fields\": \"\",\n  \"actions_display\": \"\",\n  \"checkItemStates\": \"\",\n  \"actions_entities\": \"\",\n  \"checklist_fields\": \"\",\n  \"attachment_fields\": \"\",\n  \"memberVoted_fields\": \"\",\n  \"checkItemState_fields\": \"\",\n  \"action_memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_card_get_by_id_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/card/get/by/id/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "card",
            "get",
            "by",
            "id",
            "field"
          ]
        },
        "description": "(deprecated: use `get cards by id card by field` instead) retrieves the value of a single, specified field from a trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_card_update_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/card/update/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "card",
            "update",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates an existing trello card's attributes like name, description, due date, members, labels, position, or archives/unarchives it, attaches files, or changes its cover. <<DEPRECATED use update_cards",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"due\": \"\",\n  \"pos\": \"\",\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"idCard\": \"\",\n  \"idList\": \"\",\n  \"labels\": \"\",\n  \"idBoard\": \"\",\n  \"idLabels\": \"\",\n  \"idMembers\": \"\",\n  \"urlSource\": \"\",\n  \"fileSource\": \"\",\n  \"subscribed\": \"\",\n  \"idCardSource\": \"\",\n  \"keepFromSource\": \"\",\n  \"idAttachmentCover\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_card_update_id_list_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/card/update/id/list/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "card",
            "update",
            "id",
            "list",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Deprecated: moves a trello card to a different list on the same board. use `update cards id list by id card` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_card_update_pos_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/card/update/pos/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "card",
            "update",
            "pos",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates a trello card's position within its list to 'top', 'bottom', or a specified 1-indexed positive integer.<<DEPRECATED use update_cards_pos_by_id_card>>",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_convert_checklist_item_to_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/checklist/item/to/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "checklist",
            "item",
            "to",
            "card"
          ]
        },
        "description": "Converts a checklist item into a new card (useful for promoting a subtask), which inherits some properties from the item; this is irreversible via the api and offers no customization during conversion",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idCheckItem\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_actions_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/actions/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "actions",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Deletes a specific trello action, such as a `commentcard`, by its id; this is an irreversible operation and only applies to deletable action types, as many (especially system-generated) actions cannot",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_boards_members_by_id_board_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/boards/members/by/id/board/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "boards",
            "members",
            "by",
            "id",
            "board",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Permanently removes a current member from a trello board, revoking their access; this action is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idBoard\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_boards_power_ups_by_id_board_by_power_up",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/boards/power/ups/by/id/board/by/power/up",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "boards",
            "power",
            "ups",
            "by",
            "id",
            "board",
            "by",
            "power",
            "up"
          ]
        },
        "description": "Disables a power-up on a trello board using the board's id and the plugin id of a power-up currently enabled on that board; this action is irreversible and may result in data loss.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idBoard\": \"\",\n  \"powerUp\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_actions_comments_by_id_card_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/actions/comments/by/id/card/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "actions",
            "comments",
            "by",
            "id",
            "card",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Deletes a specific comment action (identified by `idaction`) from a trello card (identified by `idcard`); this operation is irreversible and only affects comments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_attachments_by_id_card_by_id_attachment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/attachments/by/id/card/by/id/attachment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "attachments",
            "by",
            "id",
            "card",
            "by",
            "id",
            "attachment"
          ]
        },
        "description": "Permanently removes a specified attachment from a trello card; this action is irreversible and requires that both the card and the attachment exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idAttachment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Permanently deletes an archived trello card specified by its `idcard`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_checklists_by_id_card_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/checklists/by/id/card/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "checklists",
            "by",
            "id",
            "card",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Permanently deletes a specific checklist from a trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_id_labels_by_id_card_by_id_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/id/labels/by/id/card/by/id/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "id",
            "labels",
            "by",
            "id",
            "card",
            "by",
            "id",
            "label"
          ]
        },
        "description": "Removes a specific label from a trello card; the label itself is not deleted from the board, only its association with the card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_id_members_by_id_card_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/id/members/by/id/card/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "id",
            "members",
            "by",
            "id",
            "card",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Removes a currently assigned member from a trello card, affecting only the card's member list and not the member's board membership or overall permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_labels_by_id_card_by_color",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/labels/by/id/card/by/color",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "labels",
            "by",
            "id",
            "card",
            "by",
            "color"
          ]
        },
        "description": "Permanently removes a specific `color` label from an existing trello card identified by `idcard`, if the card has that label; this only disassociates the label from the card, not deleting the label de",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"color\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_members_voted_by_id_card_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/members/voted/by/id/card/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "members",
            "voted",
            "by",
            "id",
            "card",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Removes a member's vote from a trello card; this operation is irreversible and does not confirm if the vote existed prior to removal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_cards_stickers_by_id_card_by_id_sticker",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/cards/stickers/by/id/card/by/id/sticker",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "cards",
            "stickers",
            "by",
            "id",
            "card",
            "by",
            "id",
            "sticker"
          ]
        },
        "description": "Permanently removes a specific sticker (identified by `idsticker`) from a trello card (identified by `idcard`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idSticker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_checklist_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/checklist/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "checklist",
            "item"
          ]
        },
        "description": "Permanently deletes a specific check item from a checklist on a trello card; this operation is irreversible and only affects the specified item, not the entire checklist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCheckItem\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_checklists_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/checklists/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "checklists",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Permanently and irreversibly deletes a trello checklist and all its items using the `idchecklist`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_labels_by_id_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/labels/by/id/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "labels",
            "by",
            "id",
            "label"
          ]
        },
        "description": "Permanently deletes an existing label from a trello board by its id; this operation is irreversible via the api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_member_board_background",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/member/board/background",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "member",
            "board",
            "background"
          ]
        },
        "description": "Permanently deletes a specific custom board background belonging to the specified trello member; this operation cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\",\n  \"idBoardBackground\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_member_custom_sticker",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/member/custom/sticker",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "member",
            "custom",
            "sticker"
          ]
        },
        "description": "Deletes a custom sticker from a trello member's collection; this permanent action is only available for custom stickers within a trello workspace on a paid plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\",\n  \"idCustomSticker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_member_saved_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/member/saved/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "member",
            "saved",
            "search"
          ]
        },
        "description": "Permanently deletes a specific saved search for a trello member, used when the search is outdated or no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\",\n  \"idSavedSearch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_members_board_stars_by_id_member_by_id_board_star",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/members/board/stars/by/id/member/by/id/board/star",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "members",
            "board",
            "stars",
            "by",
            "id",
            "member",
            "by",
            "id",
            "board",
            "star"
          ]
        },
        "description": "Removes a specific starred board (identified by `idboardstar`) from a trello member's (identified by `idmember`) list of favorites; `idboardstar` must be an existing star for that member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\",\n  \"idBoardStar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_org_associated_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/org/associated/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "org",
            "associated",
            "domain"
          ]
        },
        "description": "Irreversibly deletes an associated email domain from a trello organization's preferences to update email domain restrictions for workspace membership; the domain must be currently associated for remov",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_organizations_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organizations/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organizations",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Permanently deletes a trello organization and all its associated data; this action is irreversible and requires caution.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_organizations_logo_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organizations/logo/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organizations",
            "logo",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Deletes an existing trello organization's custom logo, restoring its default and leaving other settings unchanged; if no custom logo exists, it succeeds without effect.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_organizations_members_all_by_id_org_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organizations/members/all/by/id/org/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organizations",
            "members",
            "all",
            "by",
            "id",
            "org",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Removes a member entirely from a specific trello organization, including from all its boards and cards; this action is permanent and does not delete the member's trello account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_organizations_members_by_id_org_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organizations/members/by/id/org/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organizations",
            "members",
            "by",
            "id",
            "org",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Permanently removes a member from a trello organization by id, revoking all access to its content; re-invitation is required for renewed access, and this does not delete the member's trello account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_organizations_prefs_org_invite_restrict_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organizations/prefs/org/invite/restrict/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organizations",
            "prefs",
            "org",
            "invite",
            "restrict",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Removes a previously set email domain invitation restriction for a trello organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_tokens_by_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tokens/by/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tokens",
            "by",
            "token"
          ]
        },
        "description": "Deletes a specific trello api token, identified by its value in the path, permanently revoking its access; this action is irreversible and used to invalidate compromised or unneeded tokens.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_tokens_webhooks_by_token_by_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tokens/webhooks/by/token/by/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tokens",
            "webhooks",
            "by",
            "token",
            "by",
            "id",
            "webhook"
          ]
        },
        "description": "Deletes an existing webhook, specified by its `idwebhook`, thereby stopping its notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_delete_webhooks_by_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhooks/by/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhooks",
            "by",
            "id",
            "webhook"
          ]
        },
        "description": "Permanently deletes an existing trello webhook by its `idwebhook`, an irreversible action that stops future notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_dismiss_member_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dismiss/member/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dismiss",
            "member",
            "message"
          ]
        },
        "description": "Dismisses a specific one-time message for an existing trello member, preventing it from being displayed again.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_board_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/board/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "board",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves details for the trello board associated with a specific action id, returning board information only.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_board_by_id_action_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/board/by/id/action/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "board",
            "by",
            "id",
            "action",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specified `field` from the trello board associated with the provided trello `idaction`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves detailed information about a specific trello action by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"member\": \"\",\n  \"display\": \"\",\n  \"entities\": \"\",\n  \"idAction\": \"\",\n  \"memberCreator\": \"\",\n  \"member_fields\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_by_id_action_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/by/id/action/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "by",
            "id",
            "action",
            "by",
            "field"
          ]
        },
        "description": "Retrieves the value of a specific field (e.g., 'data', 'date', 'type') from a trello action using its unique id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_card_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/card/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "card",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves trello card details for a given `idaction`, which must be an action specifically linked to a card; returns only card data, not action details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_card_by_id_action_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/card/by/id/action/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "card",
            "by",
            "id",
            "action",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field from the trello card associated with the given action id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_display_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/display/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "display",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves a display-friendly representation of an existing and accessible trello action for ui/report purposes, providing presentation-focused data instead of full raw details and without altering the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_entities_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/entities/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "entities",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves all entities (e.g., boards, lists, cards, members) associated with a specific, existing trello action id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_list_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/list/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "list",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves the trello list associated with a specific trello action id, for actions linked to a list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_list_by_id_action_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/list/by/id/action/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "list",
            "by",
            "id",
            "action",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field of the list associated with a trello action, returning only that single field's value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_member_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/member/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "member",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves specified details of the trello member who performed the action identified by `idaction`; information is specific to this action's context, not the member's full profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_member_by_id_action_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/member/by/id/action/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "member",
            "by",
            "id",
            "action",
            "by",
            "field"
          ]
        },
        "description": "Fetches a specific field of a member for a trello action, returning only one field per call for optimized data retrieval.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_member_creator_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/member/creator/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "member",
            "creator",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Retrieves details about the trello member who created the action with the given `idaction`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_member_creator_by_id_action_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/member/creator/by/id/action/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "member",
            "creator",
            "by",
            "id",
            "action",
            "by",
            "field"
          ]
        },
        "description": "Gets information about the creator of a trello action.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_organization_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/organization/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "organization",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Fetches the organization details for a given trello action, if the action has an associated organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_actions_organization_by_id_action_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/actions/organization/by/id/action/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "actions",
            "organization",
            "by",
            "id",
            "action",
            "by",
            "field"
          ]
        },
        "description": "Retrieves the value of a specific `field` for the organization associated with a trello `idaction`; use if the action has an organization and you need only that field (e.g., 'name', 'id', 'url').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "batch"
          ]
        },
        "description": "Executes multiple trello api get requests in a single batch operation for efficient bulk data retrieval.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"urls\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_actions_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/actions/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "actions",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves actions (e.g., card creations, comments) for a trello board by its id, useful for activity tracking; the board must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": \"\",\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"format\": \"\",\n  \"member\": \"\",\n  \"display\": \"\",\n  \"idBoard\": \"\",\n  \"entities\": \"\",\n  \"idModels\": \"\",\n  \"memberCreator\": \"\",\n  \"member_fields\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_board_stars_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/board/stars/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "board",
            "stars",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves board stars (user-marked favorites) for a specified trello board, where `idboard` must be an existing board; use to list a user's starred boards or all stars on a particular board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Fetches comprehensive details for a specific trello board by its id; this is a read-only action.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"lists\": \"\",\n  \"fields\": \"\",\n  \"labels\": \"\",\n  \"actions\": \"\",\n  \"idBoard\": \"\",\n  \"members\": \"\",\n  \"myPrefs\": \"\",\n  \"boardStars\": \"\",\n  \"checklists\": \"\",\n  \"card_fields\": \"\",\n  \"list_fields\": \"\",\n  \"memberships\": \"\",\n  \"label_fields\": \"\",\n  \"labels_limit\": \"\",\n  \"organization\": \"\",\n  \"action_fields\": \"\",\n  \"action_member\": \"\",\n  \"actions_limit\": \"\",\n  \"actions_since\": \"\",\n  \"card_stickers\": \"\",\n  \"member_fields\": \"\",\n  \"actions_format\": \"\",\n  \"membersInvited\": \"\",\n  \"actions_display\": \"\",\n  \"card_checklists\": \"\",\n  \"actions_entities\": \"\",\n  \"card_attachments\": \"\",\n  \"checklist_fields\": \"\",\n  \"memberships_member\": \"\",\n  \"organization_fields\": \"\",\n  \"action_memberCreator\": \"\",\n  \"action_member_fields\": \"\",\n  \"membersInvited_fields\": \"\",\n  \"card_attachment_fields\": \"\",\n  \"organization_memberships\": \"\",\n  \"memberships_member_fields\": \"\",\n  \"action_memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_by_id_board_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/by/id/board/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "by",
            "id",
            "board",
            "by",
            "field"
          ]
        },
        "description": "Retrieves the value of a single, specified field from a trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_cards_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/cards/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "cards",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves cards from an existing trello board, allowing filtering and customization of fields for cards, attachments, and members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"idBoard\": \"\",\n  \"members\": \"\",\n  \"stickers\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"member_fields\": \"\",\n  \"checkItemStates\": \"\",\n  \"attachment_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_cards_by_id_board_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/cards/by/id/board/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "cards",
            "by",
            "id",
            "board",
            "by",
            "filter"
          ]
        },
        "description": "Retrieves cards from a specified trello board, filtered by 'all', 'closed', 'none', 'open', or 'visible'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_cards_by_id_board_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/cards/by/id/board/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "cards",
            "by",
            "id",
            "board",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Retrieves details for a specific trello card by its id and its parent board's id, with options to customize returned fields for the card and associated data like attachments, actions, members, and che",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\",\n  \"labels\": \"\",\n  \"actions\": \"\",\n  \"idBoard\": \"\",\n  \"members\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"member_fields\": \"\",\n  \"actions_display\": \"\",\n  \"checkItemStates\": \"\",\n  \"actions_entities\": \"\",\n  \"checklist_fields\": \"\",\n  \"attachment_fields\": \"\",\n  \"checkItemState_fields\": \"\",\n  \"action_memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_checklists_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/checklists/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "checklists",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves checklists (primarily structure/metadata, not detailed item history) from a trello board, with options to include associated card and check item details and to control which fields are retur",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idBoard\": \"\",\n  \"checkItems\": \"\",\n  \"card_fields\": \"\",\n  \"checkItem_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_deltas_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/deltas/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "deltas",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves recent changes (deltas) for a trello board by its id, allowing tracking of modifications since a specified update sequence number (`ixlastupdate`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"idBoard\": \"\",\n  \"ixLastUpdate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_labels_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/labels/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "labels",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Fetches labels for a specified trello board, aiding in its organization or label management; this action does not detail per-card label usage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"fields\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_labels_by_id_board_by_id_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/labels/by/id/board/by/id/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "labels",
            "by",
            "id",
            "board",
            "by",
            "id",
            "label"
          ]
        },
        "description": "Fetches specified fields for a specific label on a trello board; this read-only action does not return information about which cards the label is attached to.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idBoard\": \"\",\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_lists_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/lists/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "lists",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves lists from a specified trello board, with options to filter lists and include card details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idBoard\": \"\",\n  \"card_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_lists_by_id_board_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/lists/by/id/board/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "lists",
            "by",
            "id",
            "board",
            "by",
            "filter"
          ]
        },
        "description": "Fetches lists by status from an accessible trello board; card details for these lists require a separate call.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_members_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/members/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "members",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves members of a trello board, with options to filter the list and select specific member fields to return.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idBoard\": \"\",\n  \"activity\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_members_by_id_board_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/members/by/id/board/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "members",
            "by",
            "id",
            "board",
            "by",
            "filter"
          ]
        },
        "description": "Retrieves members of a trello board using a specified filter, assuming the board exists and the filter is valid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_members_cards_by_id_board_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/members/cards/by/id/board/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "members",
            "cards",
            "by",
            "id",
            "board",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves cards for a member on a board, with options to customize returned fields and related data; member must have board access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list\": \"\",\n  \"board\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"idBoard\": \"\",\n  \"members\": \"\",\n  \"idMember\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"list_fields\": \"\",\n  \"board_fields\": \"\",\n  \"member_fields\": \"\",\n  \"checkItemStates\": \"\",\n  \"attachment_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_members_invited_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/members/invited/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "members",
            "invited",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves a list of members invited to a specific trello board who have not yet joined.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_members_invited_by_id_board_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/members/invited/by/id/board/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "members",
            "invited",
            "by",
            "id",
            "board",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field (e.g., email, username) for members who have been invited to a trello board but have not yet joined.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_memberships_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/memberships/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "memberships",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves trello board memberships (user roles and permissions) for auditing access or managing collaboration, returning only membership data and not other board content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"member\": \"\",\n  \"idBoard\": \"\",\n  \"member_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_memberships_by_id_board_by_id_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/memberships/by/id/board/by/id/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "memberships",
            "by",
            "id",
            "board",
            "by",
            "id",
            "membership"
          ]
        },
        "description": "Retrieves a specific membership on a trello board by its id, optionally including member details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member\": \"\",\n  \"idBoard\": \"\",\n  \"idMembership\": \"\",\n  \"member_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_my_prefs_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/my/prefs/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "my",
            "prefs",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Retrieves the authenticated user's preferences for a specific trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_organization_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/organization/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "organization",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Fetches information about the trello workspace (organization) to which a specific board belongs, returning details for the workspace only, not the board itself or its content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_boards_organization_by_id_board_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boards/organization/by/id/board/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boards",
            "organization",
            "by",
            "id",
            "board",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field from the organization associated with a trello board, useful for obtaining targeted details without fetching the entire organization object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_actions_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/actions/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "actions",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Retrieves the history of actions (e.g., comments, updates, moves) for a trello card specified by `idcard`; the card must exist and very old actions might not be available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": \"\",\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"format\": \"\",\n  \"idCard\": \"\",\n  \"member\": \"\",\n  \"display\": \"\",\n  \"entities\": \"\",\n  \"idModels\": \"\",\n  \"memberCreator\": \"\",\n  \"member_fields\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_attachments_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/attachments/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "attachments",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Retrieves attachments for a trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_attachments_by_id_card_by_id_attachment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/attachments/by/id/card/by/id/attachment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "attachments",
            "by",
            "id",
            "card",
            "by",
            "id",
            "attachment"
          ]
        },
        "description": "Retrieves a specific attachment from a trello card by card id and attachment id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\",\n  \"idAttachment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_board_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/board/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "board",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Fetches detailed information about the trello board to which a specific, existing, and accessible card belongs, using the card's id or short link.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_board_by_id_card_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/board/by/id/card/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "board",
            "by",
            "id",
            "card",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field from the board associated with a given trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Retrieves a trello card by its id or shortlink, with options to include related data like actions, attachments, members, and checklists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list\": \"\",\n  \"board\": \"\",\n  \"fields\": \"\",\n  \"idCard\": \"\",\n  \"actions\": \"\",\n  \"members\": \"\",\n  \"stickers\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"list_fields\": \"\",\n  \"board_fields\": \"\",\n  \"membersVoted\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"member_fields\": \"\",\n  \"sticker_fields\": \"\",\n  \"actions_display\": \"\",\n  \"checkItemStates\": \"\",\n  \"actions_entities\": \"\",\n  \"checklist_fields\": \"\",\n  \"attachment_fields\": \"\",\n  \"memberVoted_fields\": \"\",\n  \"checkItemState_fields\": \"\",\n  \"action_memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_by_id_card_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/by/id/card/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "by",
            "id",
            "card",
            "by",
            "field"
          ]
        },
        "description": "Retrieves the value of a single, specified field from a trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_check_item_states_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/check/item/states/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "check",
            "item",
            "states",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Gets the states (e.g., 'complete', 'incomplete') of checklist items on a trello card; returns only item states, not full checklist or card details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_checklists_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/checklists/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "checklists",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Retrieves all checklists, including their check items, for a trello card specified by its id or shortlink, if the card exists and is accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idCard\": \"\",\n  \"checkItems\": \"\",\n  \"card_fields\": \"\",\n  \"checkItem_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_list_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/list/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "list",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Gets the trello list to which a specified card (which must exist) belongs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_list_by_id_card_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/list/by/id/card/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "list",
            "by",
            "id",
            "card",
            "by",
            "field"
          ]
        },
        "description": "Fetches a specific field from the trello list that a given card belongs to.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_members_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/members/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "members",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Retrieves members of a trello card, identified by its id or shortlink, allowing customization of which member fields are returned.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_members_voted_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/members/voted/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "members",
            "voted",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Fetches members who voted on a trello card; requires an existing card id, the voting power-up to be active on the board, and members to have voted; returns member details, not vote counts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_stickers_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/stickers/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "stickers",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Retrieves all visual stickers (used for categorization, emphasis, or decoration) from an existing and accessible trello card; this read-only action does not affect other card elements.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_cards_stickers_by_id_card_by_id_sticker",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards/stickers/by/id/card/by/id/sticker",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards",
            "stickers",
            "by",
            "id",
            "card",
            "by",
            "id",
            "sticker"
          ]
        },
        "description": "Call this action to retrieve detailed properties (like image, position, rotation) of a specific sticker on a trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCard\": \"\",\n  \"idSticker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_check_item_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/check/item/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "check",
            "item",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a specific check item from a checklist using the checklist id and check item id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idCheckItem\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_checklists_board_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/checklists/board/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "checklists",
            "board",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Retrieves the trello board a specific checklist belongs to, using the checklist id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_checklists_board_by_id_checklist_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/checklists/board/by/id/checklist/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "checklists",
            "board",
            "by",
            "id",
            "checklist",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specified `field` (e.g., 'name', 'desc') from the trello board associated with the given `idchecklist`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_checklists_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/checklists/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "checklists",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Fetches a trello checklist by its `idchecklist`, requiring the id to refer to an existing checklist, and allows specifying which details of the checklist, its cards, and check items are returned.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"fields\": \"\",\n  \"checkItems\": \"\",\n  \"card_fields\": \"\",\n  \"idChecklist\": \"\",\n  \"checkItem_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_checklists_by_id_checklist_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/checklists/by/id/checklist/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "checklists",
            "by",
            "id",
            "checklist",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field's value from a trello checklist by its id and the field name, without loading the entire checklist object or its items.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_checklists_cards_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/checklists/cards/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "checklists",
            "cards",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Retrieves cards associated with a specific, valid trello checklist id, allowing for filtering and customization of card and related entity data fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"members\": \"\",\n  \"stickers\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"idChecklist\": \"\",\n  \"member_fields\": \"\",\n  \"checkItemStates\": \"\",\n  \"attachment_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_checklists_cards_by_id_checklist_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/checklists/cards/by/id/checklist/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "checklists",
            "cards",
            "by",
            "id",
            "checklist",
            "by",
            "filter"
          ]
        },
        "description": "Retrieves cards from a specified trello checklist, filterable by card id or status (e.g., 'all', 'open'), noting the response is a single card object even if the filter could match multiple cards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_checklists_check_items_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/checklists/check/items/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "checklists",
            "check",
            "items",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Retrieves check items from an existing trello checklist, optionally filtering them and specifying which fields to return.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_labels_board_by_id_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels/board/by/id/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels",
            "board",
            "by",
            "id",
            "label"
          ]
        },
        "description": "Retrieves the trello board to which a given, valid trello label id (`idlabel`) belongs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_labels_board_by_id_label_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels/board/by/id/label/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels",
            "board",
            "by",
            "id",
            "label",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specified `field` (e.g., 'name', 'url') from the trello board associated with a given `idlabel`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_labels_by_id_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels/by/id/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels",
            "by",
            "id",
            "label"
          ]
        },
        "description": "Retrieves detailed information for a specific trello label by its id, allowing selection of specific fields to return.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_lists_actions_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists/actions/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists",
            "actions",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Retrieves actions (like card movements or comments, newest first) for a trello list by its id, to track history or create activity logs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": \"\",\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"format\": \"\",\n  \"idList\": \"\",\n  \"member\": \"\",\n  \"display\": \"\",\n  \"entities\": \"\",\n  \"idModels\": \"\",\n  \"memberCreator\": \"\",\n  \"member_fields\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_lists_board_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists/board/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists",
            "board",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Retrieves the board to which a specific trello list belongs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_lists_board_by_id_list_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists/board/by/id/list/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists",
            "board",
            "by",
            "id",
            "list",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field (e.g., 'name', 'desc', 'url') from the trello board associated with a given list id, useful when the board's id is not directly known.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_lists_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Retrieves a trello list by its unique id, optionally including details for its cards and parent board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"board\": \"\",\n  \"cards\": \"\",\n  \"fields\": \"\",\n  \"idList\": \"\",\n  \"card_fields\": \"\",\n  \"board_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_lists_by_id_list_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists/by/id/list/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists",
            "by",
            "id",
            "list",
            "by",
            "field"
          ]
        },
        "description": "Fetches the value of a single, specified field from a trello list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_lists_cards_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists/cards/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists",
            "cards",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Fetches cards from a trello list by its id, with options to filter and customize the returned card data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idList\": \"\",\n  \"actions\": \"\",\n  \"members\": \"\",\n  \"stickers\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"member_fields\": \"\",\n  \"checkItemStates\": \"\",\n  \"attachment_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_lists_cards_by_id_list_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists/cards/by/id/list/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists",
            "cards",
            "by",
            "id",
            "list",
            "by",
            "filter"
          ]
        },
        "description": "Retrieves cards from a specific trello list, filtered by criteria like 'open', 'closed', or 'all'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_member_board_background",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/member/board/background",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "member",
            "board",
            "background"
          ]
        },
        "description": "Retrieves a specific custom board background for a trello member, using the member's id and the board background's id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idMember\": \"\",\n  \"idBoardBackground\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_member_custom_bg",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/member/custom/bg",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "member",
            "custom",
            "bg"
          ]
        },
        "description": "Retrieves metadata (e.g., brightness, urls, tiling status) for a specific custom board background of a trello member, not the image file itself.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idMember\": \"\",\n  \"idBoardBackground\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_member_custom_emoji",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/member/custom/emoji",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "member",
            "custom",
            "emoji"
          ]
        },
        "description": "Retrieves a specific custom emoji by its id for a trello member, requiring that both the member and emoji exist and are associated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idMember\": \"\",\n  \"idCustomEmoji\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_member_custom_sticker",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/member/custom/sticker",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "member",
            "custom",
            "sticker"
          ]
        },
        "description": "Retrieves a specific custom sticker by id for a trello member; returns only sticker data (not its usage on cards/boards), with optional field selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idMember\": \"\",\n  \"idCustomSticker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_member_saved_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/member/saved/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "member",
            "saved",
            "search"
          ]
        },
        "description": "Fetches the details of a specific saved search for a trello member; this does not execute the search.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\",\n  \"idSavedSearch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_actions_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/actions/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "actions",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves a list of actions for a specified trello member, allowing filtering by type, date, models, and control over output format and fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": \"\",\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"format\": \"\",\n  \"member\": \"\",\n  \"display\": \"\",\n  \"entities\": \"\",\n  \"idMember\": \"\",\n  \"idModels\": \"\",\n  \"memberCreator\": \"\",\n  \"member_fields\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_board_backgrounds_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/board/backgrounds/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "board",
            "backgrounds",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Fetches the board backgrounds for a specified trello member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_board_stars_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/board/stars/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "board",
            "stars",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Fetches only the boards a specific trello member has starred, identified by their id or username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_board_stars_by_id_member_by_id_board_star",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/board/stars/by/id/member/by/id/board/star",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "board",
            "stars",
            "by",
            "id",
            "member",
            "by",
            "id",
            "board",
            "star"
          ]
        },
        "description": "Retrieves detailed information about a specific board star (a trello board marked as a favorite) for a given trello member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\",\n  \"idBoardStar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_boards_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/boards/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "boards",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves board-level details (not lists/cards) for trello boards associated with a member id or username, allowing extensive customization of the returned data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lists\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"idMember\": \"\",\n  \"memberships\": \"\",\n  \"organization\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"actions_since\": \"\",\n  \"actions_format\": \"\",\n  \"actions_entities\": \"\",\n  \"organization_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_boards_by_id_member_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/boards/by/id/member/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "boards",
            "by",
            "id",
            "member",
            "by",
            "filter"
          ]
        },
        "description": "Retrieves a list of boards for a specific trello member, applying a filter such as 'open', 'starred', or 'all'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_boards_invited_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/boards/invited/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "boards",
            "invited",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves trello boards to which a specific member has been invited but has not yet joined.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_boards_invited_by_id_member_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/boards/invited/by/id/member/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "boards",
            "invited",
            "by",
            "id",
            "member",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field from trello boards to which a member has been invited but not yet joined; returns an empty result for no pending invitations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Fetches comprehensive information about a trello member, specified by id or username, including profile, activities, boards, cards, notifications, and organization affiliations, with customizable deta",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"boards\": \"\",\n  \"fields\": \"\",\n  \"tokens\": \"\",\n  \"actions\": \"\",\n  \"idMember\": \"\",\n  \"boardStars\": \"\",\n  \"board_lists\": \"\",\n  \"card_fields\": \"\",\n  \"customEmoji\": \"\",\n  \"action_since\": \"\",\n  \"board_fields\": \"\",\n  \"card_members\": \"\",\n  \"paid_account\": \"\",\n  \"action_before\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"board_actions\": \"\",\n  \"boardsInvited\": \"\",\n  \"card_stickers\": \"\",\n  \"notifications\": \"\",\n  \"organizations\": \"\",\n  \"savedSearches\": \"\",\n  \"customStickers\": \"\",\n  \"actions_display\": \"\",\n  \"actions_entities\": \"\",\n  \"boardBackgrounds\": \"\",\n  \"card_attachments\": \"\",\n  \"board_memberships\": \"\",\n  \"board_organization\": \"\",\n  \"card_member_fields\": \"\",\n  \"notification_since\": \"\",\n  \"board_action_fields\": \"\",\n  \"board_actions_limit\": \"\",\n  \"board_actions_since\": \"\",\n  \"notification_before\": \"\",\n  \"notification_fields\": \"\",\n  \"notifications_limit\": \"\",\n  \"organization_fields\": \"\",\n  \"board_actions_format\": \"\",\n  \"boardsInvited_fields\": \"\",\n  \"organizationsInvited\": \"\",\n  \"board_actions_display\": \"\",\n  \"notifications_display\": \"\",\n  \"board_actions_entities\": \"\",\n  \"card_attachment_fields\": \"\",\n  \"customBoardBackgrounds\": \"\",\n  \"notifications_entities\": \"\",\n  \"board_organization_fields\": \"\",\n  \"organization_paid_account\": \"\",\n  \"notification_memberCreator\": \"\",\n  \"organizationsInvited_fields\": \"\",\n  \"notification_memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_by_id_member_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/by/id/member/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "by",
            "id",
            "member",
            "by",
            "field"
          ]
        },
        "description": "Efficiently retrieves a specific field (e.g., fullname, username, bio) of a trello member using their id or username, without fetching the entire member profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_cards_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/cards/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "cards",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves cards for a trello member, specified by id or username, with options to filter cards and include related data like actions, attachments, and checklists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"members\": \"\",\n  \"idMember\": \"\",\n  \"stickers\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"member_fields\": \"\",\n  \"checkItemStates\": \"\",\n  \"attachment_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_cards_by_id_member_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/cards/by/id/member/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "cards",
            "by",
            "id",
            "member",
            "by",
            "filter"
          ]
        },
        "description": "Retrieves cards for a trello member, applying a filter that must be a trello-recognized card filter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_custom_board_backgrounds_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/custom/board/backgrounds/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "custom",
            "board",
            "backgrounds",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves custom board backgrounds for a trello member, who must exist, using their id or username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_custom_emoji_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/custom/emoji/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "custom",
            "emoji",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves all custom (user-specific, non-standard) emojis that a specified trello member has created or can access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_custom_stickers_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/custom/stickers/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "custom",
            "stickers",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves a member's custom stickers, which are unique personalized stickers created by them, distinct from standard trello stickers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_deltas_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/deltas/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "deltas",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves a chronological list of all changes (deltas) made by a specific trello member, including modifications to boards, lists, and cards, to audit activity or sync data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"idMember\": \"\",\n  \"ixLastUpdate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_notifications_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/notifications/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "notifications",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves notifications for a trello member, specified by their id or username, with options for filtering and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": \"\",\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"display\": \"\",\n  \"entities\": \"\",\n  \"idMember\": \"\",\n  \"read_filter\": \"\",\n  \"memberCreator\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_notifications_by_id_member_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/notifications/by/id/member/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "notifications",
            "by",
            "id",
            "member",
            "by",
            "filter"
          ]
        },
        "description": "Retrieves a list of a trello member's notifications, filtered by specified types.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_organizations_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/organizations/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "organizations",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Fetches organizations a specific trello member belongs to; the `idmember` must be an id or username of an existing trello member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idMember\": \"\",\n  \"paid_account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_organizations_by_id_member_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/organizations/by/id/member/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "organizations",
            "by",
            "id",
            "member",
            "by",
            "filter"
          ]
        },
        "description": "Fetches a list of organizations a specific trello member belongs to, using a filter to narrow down the results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_organizations_invited_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/organizations/invited/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "organizations",
            "invited",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves organizations a trello member has been invited to but has not yet accepted or declined.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_organizations_invited_by_id_member_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/organizations/invited/by/id/member/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "organizations",
            "invited",
            "by",
            "id",
            "member",
            "by",
            "field"
          ]
        },
        "description": "Get a specific field of an organization to which the member has a pending invitation; returns data only if such an invitation exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_saved_searches_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/saved/searches/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "saved",
            "searches",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Retrieves all saved search queries for a trello member; this action only retrieves saved searches and does not execute them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_members_tokens_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/members/tokens/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "members",
            "tokens",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Gets api token metadata for a trello member; actual token values are excluded for security.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notif_creator_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notif/creator/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notif",
            "creator",
            "field"
          ]
        },
        "description": "Fetches a specific field of the member who created the specified trello notification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notification_org_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notification/org/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notification",
            "org",
            "field"
          ]
        },
        "description": "Retrieves a specific field from the trello organization associated with a given notification, provided the notification is linked to an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_board_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/board/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "board",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Gets the trello board associated with a given notification id, returning only board data and allowing selection of specific board fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_board_by_id_notification_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/board/by/id/notification/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "board",
            "by",
            "id",
            "notification",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific, valid field from the board associated with a trello notification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Retrieves a specific trello notification by its id, optionally including related entities and specific fields for the notification and its related entities.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"card\": \"\",\n  \"list\": \"\",\n  \"board\": \"\",\n  \"fields\": \"\",\n  \"member\": \"\",\n  \"display\": \"\",\n  \"entities\": \"\",\n  \"card_fields\": \"\",\n  \"board_fields\": \"\",\n  \"organization\": \"\",\n  \"memberCreator\": \"\",\n  \"member_fields\": \"\",\n  \"idNotification\": \"\",\n  \"organization_fields\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_by_id_notification_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/by/id/notification/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "by",
            "id",
            "notification",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field from a trello notification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_card_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/card/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "card",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Retrieves card details (excluding notification, board, or list data) for a specified trello idnotification, which must exist and be linked to a card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_card_by_id_notification_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/card/by/id/notification/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "card",
            "by",
            "id",
            "notification",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field of a trello card, using the id of a notification that is directly associated with that card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_display_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/display/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "display",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Retrieves the information needed to display an existing trello notification, identified by its id, without altering the notification or fetching its complete metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_entities_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/entities/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "entities",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Retrieves trello entities (e.g., boards, cards, lists, members) linked to a specific notification id, focusing on the related entities rather than the notification details itself.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_list_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/list/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "list",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Retrieves details of the trello list associated with a specific notification id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_list_by_id_notification_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/list/by/id/notification/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "list",
            "by",
            "id",
            "notification",
            "by",
            "field"
          ]
        },
        "description": "Efficiently retrieves a single specified field from a trello list linked to a notification, avoiding fetching the entire list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_member_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/member/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "member",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Fetches details of the member (not the notification content itself) associated with a specific trello notification id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_member_by_id_notification_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/member/by/id/notification/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "member",
            "by",
            "id",
            "notification",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific `field` of the trello member associated with the given `idnotification`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_member_creator_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/member/creator/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "member",
            "creator",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Fetches the creator (member) of a trello notification, identified by `idnotification`, returning only creator details and respecting trello privacy settings and user permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_notifications_organization_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/organization/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "organization",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Retrieves the trello organization linked to a specific notification id; returns organization details only, not the notification itself.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_actions_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/actions/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "actions",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Retrieves a log of actions (e.g., card creations, list movements, comments) for a specified trello organization, filterable by type, date range, and models; `idorg` must be a valid organization id/nam",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": \"\",\n  \"idOrg\": \"\",\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"format\": \"\",\n  \"member\": \"\",\n  \"display\": \"\",\n  \"entities\": \"\",\n  \"idModels\": \"\",\n  \"memberCreator\": \"\",\n  \"member_fields\": \"\",\n  \"memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_boards_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/boards/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "boards",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Fetches boards for a trello organization, specified by its id or name, with options to filter and customize returned data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"lists\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"memberships\": \"\",\n  \"organization\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"actions_since\": \"\",\n  \"actions_format\": \"\",\n  \"actions_entities\": \"\",\n  \"organization_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_boards_by_id_org_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/boards/by/id/org/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "boards",
            "by",
            "id",
            "org",
            "by",
            "filter"
          ]
        },
        "description": "Fetches a list of boards belonging to a specific trello organization, filtered by a given criterion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"filter\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Retrieves detailed information about a specific trello organization, including optional related resources like members, boards, and actions, using its id or unique name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"boards\": \"\",\n  \"fields\": \"\",\n  \"actions\": \"\",\n  \"members\": \"\",\n  \"board_lists\": \"\",\n  \"memberships\": \"\",\n  \"board_fields\": \"\",\n  \"paid_account\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"board_actions\": \"\",\n  \"member_fields\": \"\",\n  \"membersInvited\": \"\",\n  \"actions_display\": \"\",\n  \"member_activity\": \"\",\n  \"actions_entities\": \"\",\n  \"memberships_member\": \"\",\n  \"board_action_fields\": \"\",\n  \"board_actions_limit\": \"\",\n  \"board_actions_since\": \"\",\n  \"board_actions_format\": \"\",\n  \"board_actions_display\": \"\",\n  \"membersInvited_fields\": \"\",\n  \"board_actions_entities\": \"\",\n  \"memberships_member_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_by_id_org_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/by/id/org/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "by",
            "id",
            "org",
            "by",
            "field"
          ]
        },
        "description": "Retrieves the value of a single specified `field` for a trello organization `idorg`, ideal for efficiently fetching a specific piece of information without loading the full organization details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idOrg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_deltas_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/deltas/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "deltas",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Retrieves a log of recent modifications (deltas) for a trello organization, filterable by tags and supporting incremental fetching via an update index.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"idOrg\": \"\",\n  \"ixLastUpdate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_members_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/members/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "members",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Retrieves members of a trello organization (specified by id or name), with an option to include member activity if the organization is premium.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"activity\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_members_by_id_org_by_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/members/by/id/org/by/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "members",
            "by",
            "id",
            "org",
            "by",
            "filter"
          ]
        },
        "description": "Fetches members of a specified trello organization using a filter like 'all', 'normal', 'admins', or 'owners'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"filter\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_members_cards_by_id_org_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/members/cards/by/id/org/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "members",
            "cards",
            "by",
            "id",
            "org",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Fetches all cards assigned to a specific member of a given trello organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list\": \"\",\n  \"board\": \"\",\n  \"idOrg\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"members\": \"\",\n  \"idMember\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"list_fields\": \"\",\n  \"board_fields\": \"\",\n  \"member_fields\": \"\",\n  \"checkItemStates\": \"\",\n  \"attachment_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_members_invited_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/members/invited/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "members",
            "invited",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Retrieves members invited to a trello organization who have not yet accepted their invitation, returning only data for pending invitations (not active or former members) and cannot send or modify invi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_members_invited_by_id_org_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/members/invited/by/id/org/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "members",
            "invited",
            "by",
            "id",
            "org",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific `field` (e.g., fullname, username, email, status) for members with pending invitations to the trello organization specified by `idorg`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idOrg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_memberships_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/memberships/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "memberships",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Fetches organization-level memberships for a trello organization, with options to filter members and include their details; does not return board-specific memberships.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"filter\": \"\",\n  \"member\": \"\",\n  \"member_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_organizations_memberships_by_id_org_by_id_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations/memberships/by/id/org/by/id/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations",
            "memberships",
            "by",
            "id",
            "org",
            "by",
            "id",
            "membership"
          ]
        },
        "description": "Retrieves a specific membership within a trello organization, using their respective ids, to ascertain the member's role, status, or permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"member\": \"\",\n  \"idMembership\": \"\",\n  \"member_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "search"
          ]
        },
        "description": "Searches trello content (e.g., boards, cards, members) within specified organizations using a query and customizable result fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"idCards\": \"\",\n  \"partial\": \"\",\n  \"idBoards\": \"\",\n  \"card_list\": \"\",\n  \"card_board\": \"\",\n  \"cards_page\": \"\",\n  \"modelTypes\": \"\",\n  \"card_fields\": \"\",\n  \"cards_limit\": \"\",\n  \"board_fields\": \"\",\n  \"boards_limit\": \"\",\n  \"card_members\": \"\",\n  \"card_stickers\": \"\",\n  \"member_fields\": \"\",\n  \"members_limit\": \"\",\n  \"idOrganizations\": \"\",\n  \"card_attachments\": \"\",\n  \"organization_fields\": \"\",\n  \"organizations_limit\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_search_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/search/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "search",
            "members"
          ]
        },
        "description": "Searches trello members by name, username, or email, optionally scoped to a board or organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"query\": \"\",\n  \"idBoard\": \"\",\n  \"idOrganization\": \"\",\n  \"onlyOrgMembers\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_sessions_socket",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sessions/socket",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sessions",
            "socket"
          ]
        },
        "description": "Establishes a websocket connection with trello for receiving real-time updates on trello entities.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_tokens_by_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tokens/by/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tokens",
            "by",
            "token"
          ]
        },
        "description": "Retrieves information about a specific trello api token, allowing selection of specific fields and inclusion of webhook details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"webhooks\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_tokens_by_token_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tokens/by/token/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tokens",
            "by",
            "token",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field from a trello token, provided the token is valid, has necessary permissions, and the field is a valid token field.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_tokens_member_by_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tokens/member/by/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tokens",
            "member",
            "by",
            "token"
          ]
        },
        "description": "Retrieves information about the trello member associated with the current api token, allowing customization of the returned fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_tokens_member_by_token_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tokens/member/by/token/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tokens",
            "member",
            "by",
            "token",
            "by",
            "field"
          ]
        },
        "description": "Retrieves a specific field for the trello member associated with the provided api token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_tokens_webhooks_by_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tokens/webhooks/by/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tokens",
            "webhooks",
            "by",
            "token"
          ]
        },
        "description": "Retrieves all webhooks associated with a specific trello api token.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_tokens_webhooks_by_token_by_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tokens/webhooks/by/token/by/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tokens",
            "webhooks",
            "by",
            "token",
            "by",
            "id",
            "webhook"
          ]
        },
        "description": "Retrieves detailed information for a specific trello webhook, identified by `idwebhook`, that is associated with the given `token`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_types_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/types/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "types",
            "by",
            "id"
          ]
        },
        "description": "Retrieves the structural details of a trello object type (e.g., 'action', 'board', 'card') using its identifier; describes the type itself, not specific instances.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_webhooks_by_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhooks/by/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhooks",
            "by",
            "id",
            "webhook"
          ]
        },
        "description": "Retrieves the full configuration and status for a specific trello webhook by its unique id; this action does not return past notification history.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_get_webhooks_by_id_webhook_by_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhooks/by/id/webhook/by/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhooks",
            "by",
            "id",
            "webhook",
            "by",
            "field"
          ]
        },
        "description": "Gets a specific field's value from a trello webhook, avoiding retrieval of the full webhook object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": \"\",\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_list_create_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/create/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "create",
            "list"
          ]
        },
        "description": "Deprecated: use 'add lists' instead. creates a new list on a trello board, optionally copying an existing list, setting position, and initial state; does not modify existing lists or move cards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"idBoard\": \"\",\n  \"subscribed\": \"\",\n  \"idListSource\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_list_get_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/get/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "get",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Retrieves a trello list by its unique id, optionally including details for its cards and parent board. <<DEPRECATED use get_lists_by_id_list>>",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"board\": \"\",\n  \"cards\": \"\",\n  \"fields\": \"\",\n  \"idList\": \"\",\n  \"card_fields\": \"\",\n  \"board_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_list_get_cards_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/get/cards/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "get",
            "cards",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Deprecated: fetches cards from a trello list by its id; use `getlistscardsbyidlist` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"idList\": \"\",\n  \"actions\": \"\",\n  \"members\": \"\",\n  \"stickers\": \"\",\n  \"checklists\": \"\",\n  \"attachments\": \"\",\n  \"member_fields\": \"\",\n  \"checkItemStates\": \"\",\n  \"attachment_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_list_id_board_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/id/board/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "id",
            "board",
            "get"
          ]
        },
        "description": "Deprecated: please use the `get lists board by id list` action instead. retrieves the board to which a specific trello list belongs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_mark_card_notifications_read",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/card/notifications/read",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "card",
            "notifications",
            "read"
          ]
        },
        "description": "Marks all notifications associated with a specific trello card as read; this is irreversible and only affects read status, not deleting or modifying notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_member_get_boards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/member/get/boards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "member",
            "get",
            "boards"
          ]
        },
        "description": "Deprecated: retrieves a filtered list of boards for a trello member; use `get members boards by id member by filter` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_member_get_boards_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/member/get/boards/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "member",
            "get",
            "boards",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Deprecated: use `getmembersboardsbyidmember`; retrieves trello boards for a member (id/username).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lists\": \"\",\n  \"fields\": \"\",\n  \"filter\": \"\",\n  \"actions\": \"\",\n  \"idMember\": \"\",\n  \"memberships\": \"\",\n  \"organization\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"actions_since\": \"\",\n  \"actions_format\": \"\",\n  \"actions_entities\": \"\",\n  \"organization_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_member_get_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/member/get/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "member",
            "get",
            "by",
            "id"
          ]
        },
        "description": "[deprecated: please use 'get members by id member' instead] fetches comprehensive trello member information by id/username, including profile, activities, boards, cards, notifications, and organizatio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cards\": \"\",\n  \"boards\": \"\",\n  \"fields\": \"\",\n  \"tokens\": \"\",\n  \"actions\": \"\",\n  \"idMember\": \"\",\n  \"boardStars\": \"\",\n  \"board_lists\": \"\",\n  \"card_fields\": \"\",\n  \"customEmoji\": \"\",\n  \"action_since\": \"\",\n  \"board_fields\": \"\",\n  \"card_members\": \"\",\n  \"paid_account\": \"\",\n  \"action_before\": \"\",\n  \"action_fields\": \"\",\n  \"actions_limit\": \"\",\n  \"board_actions\": \"\",\n  \"boardsInvited\": \"\",\n  \"card_stickers\": \"\",\n  \"notifications\": \"\",\n  \"organizations\": \"\",\n  \"savedSearches\": \"\",\n  \"customStickers\": \"\",\n  \"actions_display\": \"\",\n  \"actions_entities\": \"\",\n  \"boardBackgrounds\": \"\",\n  \"card_attachments\": \"\",\n  \"board_memberships\": \"\",\n  \"board_organization\": \"\",\n  \"card_member_fields\": \"\",\n  \"notification_since\": \"\",\n  \"board_action_fields\": \"\",\n  \"board_actions_limit\": \"\",\n  \"board_actions_since\": \"\",\n  \"notification_before\": \"\",\n  \"notification_fields\": \"\",\n  \"notifications_limit\": \"\",\n  \"organization_fields\": \"\",\n  \"board_actions_format\": \"\",\n  \"boardsInvited_fields\": \"\",\n  \"organizationsInvited\": \"\",\n  \"board_actions_display\": \"\",\n  \"notifications_display\": \"\",\n  \"board_actions_entities\": \"\",\n  \"card_attachment_fields\": \"\",\n  \"customBoardBackgrounds\": \"\",\n  \"notifications_entities\": \"\",\n  \"board_organization_fields\": \"\",\n  \"organization_paid_account\": \"\",\n  \"notification_memberCreator\": \"\",\n  \"organizationsInvited_fields\": \"\",\n  \"notification_memberCreator_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_remove_checklist_item_from_card_by_ids",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/checklist/item/from/card/by/ids",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "checklist",
            "item",
            "from",
            "card",
            "by",
            "ids"
          ]
        },
        "description": "Permanently deletes a specific checklist item from a checklist on a trello card using their respective ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idCard\": \"\",\n  \"idCheckItem\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_remove_specific_member_s_board_backgrounds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/specific/member/s/board/backgrounds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "specific",
            "member",
            "s",
            "board",
            "backgrounds"
          ]
        },
        "description": "Permanently deletes a specific custom board background (identified by `idboardbackground`) associated with an existing trello member (identified by `idmember`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idMember\": \"\",\n  \"idBoardBackground\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_search_get_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/get/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "get",
            "results"
          ]
        },
        "description": "Deprecated: use the `get search` action to search trello content within specified organizations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"idCards\": \"\",\n  \"partial\": \"\",\n  \"idBoards\": \"\",\n  \"card_list\": \"\",\n  \"card_board\": \"\",\n  \"cards_page\": \"\",\n  \"modelTypes\": \"\",\n  \"card_fields\": \"\",\n  \"cards_limit\": \"\",\n  \"board_fields\": \"\",\n  \"boards_limit\": \"\",\n  \"card_members\": \"\",\n  \"card_stickers\": \"\",\n  \"member_fields\": \"\",\n  \"members_limit\": \"\",\n  \"idOrganizations\": \"\",\n  \"card_attachments\": \"\",\n  \"organization_fields\": \"\",\n  \"organizations_limit\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_token_get_member_by_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/token/get/member/by/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "token",
            "get",
            "member",
            "by",
            "token"
          ]
        },
        "description": "Retrieves information for the trello member associated with the api token, with customizable fields. <<deprecated: please use the 'get tokens member by token' action instead.>>",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_trello_update_member_board_star",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/trello/update/member/board/star",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "trello",
            "update",
            "member",
            "board",
            "star"
          ]
        },
        "description": "Updates an existing board star for a member, allowing changes to the target board (must be a valid, accessible board id if specified) or the star's position.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"idBoard\": \"\",\n  \"idMember\": \"\",\n  \"idBoardStar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_actions_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/actions/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "actions",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Updates the `text` field of a specific trello comment action, identified by `idaction`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_actions_text_by_id_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/actions/text/by/id/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "actions",
            "text",
            "by",
            "id",
            "action"
          ]
        },
        "description": "Updates the text of an existing trello action (e.g., a comment or card update) identified by `idaction`; this change only affects the action's text content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_board_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/board/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "board",
            "membership"
          ]
        },
        "description": "Updates a user's role (e.g., admin, normal, observer) on a specific trello board or retrieves updated member details, requiring existing board and membership ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"idBoard\": \"\",\n  \"idMembership\": \"\",\n  \"member_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_board_sidebar_actions_prefs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/board/sidebar/actions/prefs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "board",
            "sidebar",
            "actions",
            "prefs"
          ]
        },
        "description": "Updates the current user's preference for the visibility of sidebar board actions on a specific trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_board_star_position",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/board/star/position",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "board",
            "star",
            "position"
          ]
        },
        "description": "Updates the display position of a specific starred board for a trello member (referenced by `idmember` or 'me') using its `idboardstar`, allowing reordering to 'top', 'bottom', or a specific positive ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\",\n  \"idBoardStar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates attributes (e.g., name, description, status, preferences) of an existing trello board identified by `idboard`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"idBoard\": \"\",\n  \"powerUps\": \"\",\n  \"subscribed\": \"\",\n  \"prefs_voting\": \"\",\n  \"idBoardSource\": \"\",\n  \"prefs__voting\": \"\",\n  \"idOrganization\": \"\",\n  \"keepFromSource\": \"\",\n  \"prefs_comments\": \"\",\n  \"prefs_selfJoin\": \"\",\n  \"labelNames__red\": \"\",\n  \"prefs__comments\": \"\",\n  \"prefs__selfJoin\": \"\",\n  \"prefs_cardAging\": \"\",\n  \"labelNames__blue\": \"\",\n  \"prefs__cardAging\": \"\",\n  \"prefs_background\": \"\",\n  \"prefs_cardCovers\": \"\",\n  \"labelNames__green\": \"\",\n  \"prefs__background\": \"\",\n  \"prefs__cardCovers\": \"\",\n  \"prefs_invitations\": \"\",\n  \"labelNames__orange\": \"\",\n  \"labelNames__purple\": \"\",\n  \"labelNames__yellow\": \"\",\n  \"prefs__invitations\": \"\",\n  \"prefs_permissionLevel\": \"\",\n  \"prefs__permissionLevel\": \"\",\n  \"prefs__calendarFeedEnabled\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_closed_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/closed/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "closed",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Archives (closes) an active trello board or reopens a previously archived board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_desc_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/desc/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "desc",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the description of a specified trello board; the update is immediate and does not affect other board elements like lists, cards, or membership.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_id_organization_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/id/organization/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "id",
            "organization",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Moves an existing trello board to a specified, existing trello organization, which can affect the board's visibility and member access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_label_names_blue_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/label/names/blue/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "label",
            "names",
            "blue",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Sets the name of the blue label for a trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_label_names_green_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/label/names/green/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "label",
            "names",
            "green",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the name of the green label for a specified trello board; this change is board-wide, affects all cards using this label, and does not change the label's color.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_label_names_orange_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/label/names/orange/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "label",
            "names",
            "orange",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the name of the orange label for a specified trello board, affecting only the label's name, not its color or associated cards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_label_names_purple_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/label/names/purple/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "label",
            "names",
            "purple",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the name of the purple label on a trello board specified by `idboard`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_label_names_red_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/label/names/red/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "label",
            "names",
            "red",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the name of the red label on a specified trello board, without affecting its color or other labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_label_names_yellow_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/label/names/yellow/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "label",
            "names",
            "yellow",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the name of a board's yellow label; other colored labels are unaffected.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_members_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/members/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "members",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Adds or updates a member's role on a specific trello board, typically requiring the member's `email` and a membership `type`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"email\": \"\",\n  \"idBoard\": \"\",\n  \"fullName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_members_by_id_board_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/members/by/id/board/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "members",
            "by",
            "id",
            "board",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates a current member's email, full name, or role (admin, normal, or observer) on a specific trello board; email and full name changes are board-specific and do not affect the member's global trell",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"email\": \"\",\n  \"idBoard\": \"\",\n  \"fullName\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_my_prefs_email_position_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/my/prefs/email/position/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "my",
            "prefs",
            "email",
            "position",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates a trello board's email position preference for new cards; this preference only affects new cards (not existing ones) and the board must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_my_prefs_id_email_list_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/my/prefs/id/email/list/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "my",
            "prefs",
            "id",
            "email",
            "list",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Sets or disables the default trello list for new cards created via email on a specific board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_my_prefs_show_list_guide_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/my/prefs/show/list/guide/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "my",
            "prefs",
            "show",
            "list",
            "guide",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the 'show list guide' preference for a specified trello board, affecting visibility for all users of that board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_my_prefs_show_sidebar_activity_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/my/prefs/show/sidebar/activity/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "my",
            "prefs",
            "show",
            "sidebar",
            "activity",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Sets the current user's preference for displaying or concealing the sidebar activity feed on an accessible trello board; this change only affects the requesting user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_my_prefs_show_sidebar_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/my/prefs/show/sidebar/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "my",
            "prefs",
            "show",
            "sidebar",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the authenticated user's personal preference for showing or hiding the sidebar on a specific trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_my_prefs_show_sidebar_members_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/my/prefs/show/sidebar/members/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "my",
            "prefs",
            "show",
            "sidebar",
            "members",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the authenticated user's preference for showing or hiding members in a specific trello board's sidebar, affecting only the current user's view.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_name_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/name/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "name",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the name of an existing trello board, identified by `idboard`; this change only affects the board's name, not its other attributes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_background_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/background/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "background",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the cosmetic background preference for a specific trello board; this change does not affect board functionality or content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_calendar_feed_enabled_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/calendar/feed/enabled/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "calendar",
            "feed",
            "enabled",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the 'calendarfeedenabled' preference for a trello board, which, when enabled, makes board cards with due dates accessible via an icalendar feed for external calendar integration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_card_aging_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/card/aging/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "card",
            "aging",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the card aging visual preference to 'pirate' or 'regular' mode for a specified trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_card_covers_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/card/covers/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "card",
            "covers",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the preference on a specific trello board for whether existing card covers are displayed; this controls visibility only and does not add or remove the actual covers from cards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_comments_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/comments/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "comments",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Changes the permission settings for who can add comments to cards on a specific trello board, without affecting other board settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_invitations_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/invitations/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "invitations",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates who can invite new members ('admins' or 'members') to a specific trello board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_permission_level_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/permission/level/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "permission",
            "level",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the permission level preference (e.g., 'private' or 'public') for a trello board, identified by `idboard`, if the board exists and the authenticated user possesses administrative permissions f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_self_join_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/self/join/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "self",
            "join",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates a board's 'selfjoin' preference, determining if members can join freely or must be invited.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_prefs_voting_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/prefs/voting/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "prefs",
            "voting",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Sets who can vote on cards for an existing trello board, changing only the voting preferences for all cards on the board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_boards_subscribed_by_id_board",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/boards/subscribed/by/id/board",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "boards",
            "subscribed",
            "by",
            "id",
            "board"
          ]
        },
        "description": "Updates the authenticated user's subscription status (subscribe/unsubscribe for notifications) for a specified trello board, to which the user must have access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idBoard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_card_checklist_item_position",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/card/checklist/item/position",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "card",
            "checklist",
            "item",
            "position"
          ]
        },
        "description": "Updates the position of a check item within a checklist on a trello card; the new position can be 'top', 'bottom', or a positive integer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\",\n  \"idCheckItem\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_card_checklist_item_state_by_ids",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/card/checklist/item/state/by/ids",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "card",
            "checklist",
            "item",
            "state",
            "by",
            "ids"
          ]
        },
        "description": "Updates the state of a specific check item on a trello card's checklist, only affecting its completion status and no other properties.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\",\n  \"idCheckItem\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_card_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/card/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "card",
            "comment"
          ]
        },
        "description": "Updates the text for a given comment action (`idaction`) on a specified card (`idcard`), affecting only the text content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"idCard\": \"\",\n  \"idAction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates an existing trello card's attributes like name, description, due date, members, labels, position, or archives/unarchives it, attaches files, or changes its cover.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"due\": \"\",\n  \"pos\": \"\",\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"idCard\": \"\",\n  \"idList\": \"\",\n  \"labels\": \"\",\n  \"idBoard\": \"\",\n  \"idLabels\": \"\",\n  \"idMembers\": \"\",\n  \"urlSource\": \"\",\n  \"fileSource\": \"\",\n  \"subscribed\": \"\",\n  \"idCardSource\": \"\",\n  \"keepFromSource\": \"\",\n  \"idAttachmentCover\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_closed_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/closed/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "closed",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates the 'closed' status of an existing trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_desc_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/desc/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "desc",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates or clears the entire description of an existing trello card; use an empty string for `value` to clear.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_due_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/due/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "due",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates the due date of a specific trello card; the card identified by `idcard` must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_id_attachment_cover_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/id/attachment/cover/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "id",
            "attachment",
            "cover",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Sets or removes the attachment cover for an existing trello card, using a specified image attachment id from that card or `none` to remove the cover.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_id_board_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/id/board/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "id",
            "board",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Moves a trello card to a different board and, optionally, to a specific list on that new board, useful for reorganizing across projects or workflows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_id_list_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/id/list/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "id",
            "list",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Moves a trello card to a different list on the same trello board; this operation is idempotent and only updates the card's list id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_id_members_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/id/members/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "id",
            "members",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Adds a member to a trello card, appending their id to the card's list of member ids; the card must exist and the member must have board permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_labels_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/labels/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "labels",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates labels on an existing trello card; use `value` with a color list (e.g., 'red,blue') or 'all' to replace all labels, or `color` and `name` to add/update a specific label (created if new on boar",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_name_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/name/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "name",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates the name of an existing trello card, identified by its id or shortlink; other card properties remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_pos_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/pos/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "pos",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates a trello card's position within its list to 'top', 'bottom', or a specified 1-indexed positive integer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_stickers_by_id_card_by_id_sticker",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/stickers/by/id/card/by/id/sticker",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "stickers",
            "by",
            "id",
            "card",
            "by",
            "id",
            "sticker"
          ]
        },
        "description": "Updates an existing sticker's image, position (top, left coordinates), or stacking order (zindex) on a specific trello card; the `rotate` parameter may not be supported by trello.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": \"\",\n  \"left\": \"\",\n  \"image\": \"\",\n  \"idCard\": \"\",\n  \"rotate\": \"\",\n  \"zIndex\": \"\",\n  \"idSticker\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_cards_subscribed_by_id_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/cards/subscribed/by/id/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "cards",
            "subscribed",
            "by",
            "id",
            "card"
          ]
        },
        "description": "Updates the user's subscription status for a trello card, if the card exists and is accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_checklist_item_by_ids",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/checklist/item/by/ids",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "checklist",
            "item",
            "by",
            "ids"
          ]
        },
        "description": "Updates a check item's attributes (name, position, state) or moves it to a different checklist on the same card, requiring the card id, current checklist id, and check item id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"state\": \"\",\n  \"idCard\": \"\",\n  \"idCheckItem\": \"\",\n  \"idChecklist\": \"\",\n  \"idChecklistCurrent\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_checklist_item_name_in_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/checklist/item/name/in/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "checklist",
            "item",
            "name",
            "in",
            "card"
          ]
        },
        "description": "Updates the name of a specific check item on a checklist within a trello card, provided the card, checklist, and check item all exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idCard\": \"\",\n  \"idCheckItem\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_checklists_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/checklists/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "checklists",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Updates an existing trello checklist, allowing modification of its name, position, associated card/board, or copying items from a source checklist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"idCard\": \"\",\n  \"idBoard\": \"\",\n  \"idChecklist\": \"\",\n  \"idChecklistSource\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_checklists_id_card_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/checklists/id/card/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "checklists",
            "id",
            "card",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Moves a trello checklist to a new parent card; the checklist and the destination card must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_checklists_name_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/checklists/name/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "checklists",
            "name",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Updates the name of an existing trello checklist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_checklists_pos_by_id_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/checklists/pos/by/id/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "checklists",
            "pos",
            "by",
            "id",
            "checklist"
          ]
        },
        "description": "Updates the position of an existing checklist on a trello card.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idChecklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_labels_by_id_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/labels/by/id/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "labels",
            "by",
            "id",
            "label"
          ]
        },
        "description": "Updates an existing trello label's attributes (color, name, or associated board) by its id; the label must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"idBoard\": \"\",\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_labels_color_by_id_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/labels/color/by/id/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "labels",
            "color",
            "by",
            "id",
            "label"
          ]
        },
        "description": "Updates the color of an existing trello label, or removes its color if 'null' is specified for the value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_labels_name_by_id_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/labels/name/by/id/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "labels",
            "name",
            "by",
            "id",
            "label"
          ]
        },
        "description": "Updates the name of an existing trello label, identified by `idlabel`; an empty string for `value` clears the label's name but does not delete the label.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_lists_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lists/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lists",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Updates attributes of an existing trello list, such as name, position, archive status, board, or copies cards from another list, provided the list `idlist` exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"closed\": \"\",\n  \"idList\": \"\",\n  \"idBoard\": \"\",\n  \"subscribed\": \"\",\n  \"idListSource\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_lists_closed_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lists/closed/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lists",
            "closed",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Updates whether an existing trello list is closed (archived); a closed list is hidden from the board view but not deleted and can be re-opened.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_lists_id_board_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lists/id/board/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lists",
            "id",
            "board",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Moves an existing trello list (identified by `idlist`) to an existing destination board (board id in `value`), optionally setting its new position (`pos`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"value\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_lists_name_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lists/name/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lists",
            "name",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Updates the name of an existing trello list, identified by its id; this only changes the list's name, not its cards or position.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_lists_pos_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lists/pos/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lists",
            "pos",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Changes a trello list's order on a board to 'top', 'bottom', or a specified numeric position, affecting only its position.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_lists_subscribed_by_id_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lists/subscribed/by/id/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lists",
            "subscribed",
            "by",
            "id",
            "list"
          ]
        },
        "description": "Updates the subscription status for a trello list, allowing the user to subscribe or unsubscribe to control notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_member_board_background",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/member/board/background",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "member",
            "board",
            "background"
          ]
        },
        "description": "Updates an existing board background's properties (brightness, image file, or tiling) for a specified trello member, using their id and the board background id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"tile\": \"\",\n  \"idMember\": \"\",\n  \"brightness\": \"\",\n  \"idBoardBackground\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_member_s_custom_board_backgrounds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/member/s/custom/board/backgrounds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "member",
            "s",
            "custom",
            "board",
            "backgrounds"
          ]
        },
        "description": "Updates a specific existing custom board background for a trello member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"tile\": \"\",\n  \"idMember\": \"\",\n  \"brightness\": \"\",\n  \"idBoardBackground\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_member_saved_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/member/saved/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "member",
            "saved",
            "search"
          ]
        },
        "description": "Updates an existing trello member's saved search (name, position, or query) identified by `idmember` and `idsavedsearch`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pos\": \"\",\n  \"name\": \"\",\n  \"query\": \"\",\n  \"idMember\": \"\",\n  \"idSavedSearch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_member_saved_search_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/member/saved/search/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "member",
            "saved",
            "search",
            "name"
          ]
        },
        "description": "Updates a trello member's saved search display name (not its criteria), identified by `idmember` and `idsavedsearch`; the search must exist and belong to the member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\",\n  \"idSavedSearch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_member_saved_search_pos",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/member/saved/search/pos",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "member",
            "saved",
            "search",
            "pos"
          ]
        },
        "description": "Updates the position of a specified saved search for a trello member; other attributes of the saved search or member remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\",\n  \"idSavedSearch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_member_saved_search_query",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/member/saved/search/query",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "member",
            "saved",
            "search",
            "query"
          ]
        },
        "description": "Updates the query string of an existing saved search for a trello member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\",\n  \"idSavedSearch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_member_summary_interval",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/member/summary/interval",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "member",
            "summary",
            "interval"
          ]
        },
        "description": "Updates a trello member's preference for the frequency of email summary notifications; this setting affects only summary notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_members_avatar_source_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/members/avatar/source/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "members",
            "avatar",
            "source",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates the avatar source for a specified trello member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_members_bio_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/members/bio/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "members",
            "bio",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates the bio of a specified trello member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_members_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/members/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "members",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates an existing trello member's profile information, preferences, or username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bio\": \"\",\n  \"fullName\": \"\",\n  \"idMember\": \"\",\n  \"initials\": \"\",\n  \"username\": \"\",\n  \"avatarSource\": \"\",\n  \"prefs__locale\": \"\",\n  \"prefs__colorBlind\": \"\",\n  \"prefs__minutesBetweenSummaries\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_members_full_name_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/members/full/name/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "members",
            "full",
            "name",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates the full name for a trello member, identified by their valid id or username; this operation only affects the full name, leaving other profile information unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_members_initials_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/members/initials/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "members",
            "initials",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates the initials for a specified trello member, identified by their id or username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_members_prefs_color_blind_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/members/prefs/color/blind/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "members",
            "prefs",
            "color",
            "blind",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates a trello member's color blind preference, which only changes their specific display without affecting others.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_members_prefs_locale_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/members/prefs/locale/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "members",
            "prefs",
            "locale",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates a trello member's locale preference; affects date/time display (not existing content translation) and an empty `value` may reset to default.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_members_username_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/members/username/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "members",
            "username",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates the username for an existing trello member, identified by their id or current username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_notifications_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/notifications/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "notifications",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Updates only the 'unread' status of a specific trello notification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"unread\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_notifications_unread_by_id_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/notifications/unread/by/id/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "notifications",
            "unread",
            "by",
            "id",
            "notification"
          ]
        },
        "description": "Marks an existing and accessible trello notification as read or unread.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idNotification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_org_associated_domain_prefs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/org/associated/domain/prefs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "org",
            "associated",
            "domain",
            "prefs"
          ]
        },
        "description": "Updates or removes the google workspace domain associated with a trello organization, often to configure features like sso or automatic user provisioning.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_org_board_visibility",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/org/board/visibility",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "org",
            "board",
            "visibility"
          ]
        },
        "description": "Updates the preference controlling who can set board visibility to 'organization-visible' within an existing trello organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_org_external_members_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/org/external/members/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "org",
            "external",
            "members",
            "access"
          ]
        },
        "description": "Updates the 'externalmembersdisabled' preference for a trello organization to control whether non-members can be added to its boards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_org_member_deactivation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/org/member/deactivation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "org",
            "member",
            "deactivation"
          ]
        },
        "description": "Updates a member's deactivation status in an organization; 'true' deactivates (suspends access temporarily), 'false' reactivates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_org_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/org/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "org",
            "membership"
          ]
        },
        "description": "Updates a trello organization member's type to 'admin', 'normal', or 'observer', using the organization and membership ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"idOrg\": \"\",\n  \"idMembership\": \"\",\n  \"member_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_org_private_board_visibility",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/org/private/board/visibility",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "org",
            "private",
            "board",
            "visibility"
          ]
        },
        "description": "Updates the organization's preference controlling who is permitted to change the visibility of its private boards; requires admin privileges for the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_org_public_board_visibility",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/org/public/board/visibility",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "org",
            "public",
            "board",
            "visibility"
          ]
        },
        "description": "Updates the restriction on who can set board visibility to public for a specified trello organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Updates various attributes of an existing trello organization, identified by `idorg`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"desc\": \"\",\n  \"name\": \"\",\n  \"idOrg\": \"\",\n  \"website\": \"\",\n  \"displayName\": \"\",\n  \"prefs__permissionLevel\": \"\",\n  \"prefs__associatedDomain\": \"\",\n  \"prefs__googleAppsVersion\": \"\",\n  \"prefs__orgInviteRestrict\": \"\",\n  \"prefs__externalMembersDisabled\": \"\",\n  \"prefs__boardVisibilityRestrict__org\": \"\",\n  \"prefs__boardVisibilityRestrict__public\": \"\",\n  \"prefs__boardVisibilityRestrict__private\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_desc_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/desc/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "desc",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Updates or clears the description for an existing trello organization, identified by its id or name, to a new string up to 16384 characters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_display_name_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/display/name/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "display",
            "name",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Updates the display name of a trello organization, identifiable by its current id or name (`idorg`), to the new `value`; other attributes remain unaffected.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_members_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/members/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "members",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Adds/updates a member in a specified trello organization (`idorg`); `email` and `type` are api-required, `fullname` is needed if `email` is new to trello.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"email\": \"\",\n  \"idOrg\": \"\",\n  \"fullName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_members_by_id_org_by_id_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/members/by/id/org/by/id/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "members",
            "by",
            "id",
            "org",
            "by",
            "id",
            "member"
          ]
        },
        "description": "Updates a member's details (email, full name, or type) in a trello organization, applying changes only to the fields provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"email\": \"\",\n  \"idOrg\": \"\",\n  \"fullName\": \"\",\n  \"idMember\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_name_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/name/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "name",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Updates the unique programmatic identifier (used in urls and api interactions) for an existing trello organization; this is an irreversible operation, effective immediately, and only affects this iden",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_prefs_google_apps_version_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/prefs/google/apps/version/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "prefs",
            "google",
            "apps",
            "version",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Updates the google apps integration version preference for a specified trello organization, to manage compatibility or features related to google workspace services.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_prefs_org_invite_restrict_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/prefs/org/invite/restrict/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "prefs",
            "org",
            "invite",
            "restrict",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Modifies a trello organization's invitation policy using an email, domain, or keyword rule, affecting only future invites, not existing members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_prefs_permission_level_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/prefs/permission/level/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "prefs",
            "permission",
            "level",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Updates a trello organization's `permissionlevel` preference, determining if it's members-only or link-accessible, and affecting new board default visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_organizations_website_by_id_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organizations/website/by/id/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organizations",
            "website",
            "by",
            "id",
            "org"
          ]
        },
        "description": "Updates the website url for a specified trello organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idOrg\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_sessions_by_id_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/sessions/by/id/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "sessions",
            "by",
            "id",
            "session"
          ]
        },
        "description": "Updates a trello user session's viewed board id or status; call when user activity or board focus changes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"idBoard\": \"\",\n  \"idSession\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_sessions_status_by_id_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/sessions/status/by/id/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "sessions",
            "status",
            "by",
            "id",
            "session"
          ]
        },
        "description": "Updates the status of an existing trello session.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idSession\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_tokens_webhooks_by_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/tokens/webhooks/by/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "tokens",
            "webhooks",
            "by",
            "token"
          ]
        },
        "description": "Updates an existing webhook's description, callback url, or monitored trello model id, using the api token in the path to identify the webhook; any new `idmodel` must be accessible by the token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"idModel\": \"\",\n  \"callbackURL\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhooks"
          ]
        },
        "description": "Updates an existing trello webhook's description, active status, callback url, or monitored model id; requires the webhook id (not in request body) to be specified, typically via url path.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": \"\",\n  \"idModel\": \"\",\n  \"callbackURL\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_webhooks_active_by_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhooks/active/by/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhooks",
            "active",
            "by",
            "id",
            "webhook"
          ]
        },
        "description": "Updates the active status ('true' or 'false') of an existing trello webhook specified by `idwebhook`, without affecting other properties.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_webhooks_by_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhooks/by/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhooks",
            "by",
            "id",
            "webhook"
          ]
        },
        "description": "Updates an existing trello webhook's configuration, avoiding the need to delete and recreate it for modifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": \"\",\n  \"idModel\": \"\",\n  \"idWebhook\": \"\",\n  \"callbackURL\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_webhooks_callback_urlby_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhooks/callback/urlby/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhooks",
            "callback",
            "urlby",
            "id",
            "webhook"
          ]
        },
        "description": "Updates the callback url for a specific trello webhook; other webhook attributes remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_webhooks_description_by_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhooks/description/by/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhooks",
            "description",
            "by",
            "id",
            "webhook"
          ]
        },
        "description": "Updates the description of an existing trello webhook; an empty string for the new description removes the current one.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "trello_update_webhooks_id_model_by_id_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhooks/id/model/by/id/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhooks",
            "id",
            "model",
            "by",
            "id",
            "webhook"
          ]
        },
        "description": "Updates the `idmodel` (the monitored trello entity like a board, list, or card) for an active webhook `idwebhook` to the new model id `value`; other webhook properties are unaffected.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"idWebhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}