/trello-boards | Type: Application | PCID required: Yes
Tools
trello_boards_boardsidmembersidmember
Remove Member from Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
idMember | string | Yes | — | The id of the member to add to the board. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"idMember": {
"type": "string",
"description": "The id of the member to add to the board."
}
},
"required": [
"PCID",
"id",
"idMember"
]
}
trello_boards_delete_id
Delete a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id value"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_board_id_plugins
Get Power-Ups on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
filter | string | No | — | One of: enabled or available |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
},
"filter": {
"type": "string",
"description": "One of: `enabled` or `available`",
"enum": [
"enabled",
"available"
]
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_id
Get a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id value |
actions | string | No | — | This is a nested resource. Read more about actions as nested resources here. |
boardStars | string | No | — | Valid values are one of: mine or none. |
cards | string | No | — | This is a nested resource. Read more about cards as nested resources here. |
card_pluginData | boolean | No | — | Use with the cards param to include card pluginData with the response |
checklists | string | No | — | This is a nested resource. Read more about checklists as nested resources here. |
customFields | boolean | No | — | This is a nested resource. Read more about custom fields as nested resources here. |
fields | string | No | — | The fields of the board to be included in the response. Valid values: all or a comma-separated list of: closed, dateLastActivity, dateLastView, desc, descData, idMemberCreator, idOrganization, invitations, invited, labelNames, memberships, name, pinned, powerUps, prefs, shortLink, shortUrl, starred, subscribed, url |
labels | string | No | — | This is a nested resource. Read more about labels as nested resources here. |
lists | string | No | — | This is a nested resource. Read more about lists as nested resources here. |
members | string | No | — | This is a nested resource. Read more about members as nested resources here. |
memberships | string | No | — | This is a nested resource. Read more about memberships as nested resources here. |
pluginData | boolean | No | — | Determines whether the pluginData for this board should be returned. Valid values: true or false. |
organization | boolean | No | — | This is a nested resource. Read more about organizations as nested resources here. |
organization_pluginData | boolean | No | — | Use with the organization param to include organization pluginData with the response |
myPrefs | boolean | No | — | My Prefs |
tags | boolean | No | — | Also known as collections, tags, refer to the collection(s) that a Board belongs to. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id value"
},
"actions": {
"type": "string",
"description": "This is a nested resource. Read more about actions as nested resources [here](/cloud/trello/guides/rest-api/nested-resources/)."
},
"boardStars": {
"type": "string",
"description": "Valid values are one of: `mine` or `none`."
},
"cards": {
"type": "string",
"description": "This is a nested resource. Read more about cards as nested resources [here](/cloud/trello/guides/rest-api/nested-resources/)."
},
"card_pluginData": {
"type": "boolean",
"description": "Use with the `cards` param to include card pluginData with the response"
},
"checklists": {
"type": "string",
"description": "This is a nested resource. Read more about checklists as nested resources [here](/cloud/trello/guides/rest-api/nested-resources/)."
},
"customFields": {
"type": "boolean",
"description": "This is a nested resource. Read more about custom fields as nested resources [here](#custom-fields-nested-resource)."
},
"fields": {
"type": "string",
"description": "The fields of the board to be included in the response. Valid values: all or a comma-separated list of: closed, dateLastActivity, dateLastView, desc, descData, idMemberCreator, idOrganization, invitations, invited, labelNames, memberships, name, pinned, powerUps, prefs, shortLink, shortUrl, starred, subscribed, url"
},
"labels": {
"type": "string",
"description": "This is a nested resource. Read more about labels as nested resources [here](/cloud/trello/guides/rest-api/nested-resources/)."
},
"lists": {
"type": "string",
"description": "This is a nested resource. Read more about lists as nested resources [here](/cloud/trello/guides/rest-api/nested-resources/)."
},
"members": {
"type": "string",
"description": "This is a nested resource. Read more about members as nested resources [here](/cloud/trello/guides/rest-api/nested-resources/)."
},
"memberships": {
"type": "string",
"description": "This is a nested resource. Read more about memberships as nested resources [here](/cloud/trello/guides/rest-api/nested-resources/)."
},
"pluginData": {
"type": "boolean",
"description": "Determines whether the pluginData for this board should be returned. Valid values: true or false."
},
"organization": {
"type": "boolean",
"description": "This is a nested resource. Read more about organizations as nested resources [here](/cloud/trello/guides/rest-api/nested-resources/)."
},
"organization_pluginData": {
"type": "boolean",
"description": "Use with the `organization` param to include organization pluginData with the response"
},
"myPrefs": {
"type": "boolean",
"description": "My Prefs"
},
"tags": {
"type": "boolean",
"description": "Also known as collections, tags, refer to the collection(s) that a Board belongs to."
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_id_actions
Get Actions of a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
boardId | string | Yes | — | Board Id |
fields | string | No | — | The fields to be returned for the Actions. See Action fields here. |
filter | string | No | — | A comma-separated list of action types. |
format | string | No | — | The format of the returned Actions. Either list or count. |
idModels | string | No | — | A comma-separated list of idModels. Only actions related to these models will be returned. |
limit | number | No | — | The limit of the number of responses, between 0 and 1000. |
member | boolean | No | — | Whether to return the member object for each action. |
member_fields | string | No | — | The fields of the member to return. |
memberCreator | boolean | No | — | Whether to return the memberCreator object for each action. |
memberCreator_fields | string | No | — | The fields of the member creator to return |
page | number | No | — | The page of results for actions. |
reactions | boolean | No | — | Whether to show reactions on comments or not. |
before | string | No | — | A date string in the form of YYYY-MM-DDThh:mm:ssZ or a mongo object ID. Only objects created before this date will be returned. |
since | string | No | — | A date string in the form of YYYY-MM-DDThh:mm:ssZ or a mongo object ID. Only objects created since this date will be returned. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"boardId": {
"type": "string",
"description": "Board Id"
},
"fields": {
"type": "string",
"description": "The fields to be returned for the Actions. [See Action fields here](/cloud/trello/guides/rest-api/object-definitions/#action-object)."
},
"filter": {
"type": "string",
"description": "A comma-separated list of [action types](/cloud/trello/guides/rest-api/action-types/)."
},
"format": {
"type": "string",
"description": "The format of the returned Actions. Either list or count."
},
"idModels": {
"type": "string",
"description": "A comma-separated list of idModels. Only actions related to these models will be returned."
},
"limit": {
"type": "number",
"description": "The limit of the number of responses, between 0 and 1000."
},
"member": {
"type": "boolean",
"description": "Whether to return the member object for each action."
},
"member_fields": {
"type": "string",
"description": "The fields of the [member](/cloud/trello/guides/rest-api/object-definitions/#member-object) to return."
},
"memberCreator": {
"type": "boolean",
"description": "Whether to return the memberCreator object for each action."
},
"memberCreator_fields": {
"type": "string",
"description": "The fields of the [member](/cloud/trello/guides/rest-api/object-definitions/#member-object) creator to return"
},
"page": {
"type": "number",
"description": "The page of results for actions."
},
"reactions": {
"type": "boolean",
"description": "Whether to show reactions on comments or not."
},
"before": {
"type": "string",
"description": "A date string in the form of YYYY-MM-DDThh:mm:ssZ or a mongo object ID. Only objects created before this date will be returned."
},
"since": {
"type": "string",
"description": "A date string in the form of YYYY-MM-DDThh:mm:ssZ or a mongo object ID. Only objects created since this date will be returned."
}
},
"required": [
"PCID",
"boardId"
]
}
trello_boards_get_id_boardplugins
Get Enabled Power-Ups on Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the Board |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the Board"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_id_boardstars
Get boardStars on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
boardId | string | Yes | — | Board Id |
filter | string | No | — | Valid values: mine, none |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"boardId": {
"type": "string",
"description": "Board Id"
},
"filter": {
"type": "string",
"description": "Valid values: mine, none"
}
},
"required": [
"PCID",
"boardId"
]
}
trello_boards_get_id_cards
Get Cards on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id value"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_id_cards_filter
Get filtered Cards on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | ID of the Board |
filter | string | Yes | — | One of: all, closed, complete, incomplete, none, open, visible |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "ID of the Board"
},
"filter": {
"type": "string",
"description": "One of: `all`, `closed`, `complete`, `incomplete`, `none`, `open`, `visible`",
"enum": [
"all",
"closed",
"complete",
"incomplete",
"none",
"open",
"visible"
]
}
},
"required": [
"PCID",
"id",
"filter"
]
}
trello_boards_get_id_customfields
Get Custom Fields for Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_id_field
Get a field on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board. |
field | string | Yes | — | The field you’d like to receive. Valid values: closed, dateLastActivity, dateLastView, desc, descData, idMemberCreator, idOrganization, invitations, invited, labelNames, memberships, name, pinned, powerUps, prefs, shortLink, shortUrl, starred, subscribed, url. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board."
},
"field": {
"type": "string",
"description": "The field you'd like to receive. Valid values: closed, dateLastActivity, dateLastView, desc, descData, idMemberCreator, idOrganization, invitations, invited, labelNames, memberships, name, pinned, powerUps, prefs, shortLink, shortUrl, starred, subscribed, url."
}
},
"required": [
"PCID",
"id",
"field"
]
}
trello_boards_get_id_labels
Get Labels on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the Board. |
fields | string | No | — | The fields to be returned for the Labels. |
limit | integer | No | — | The number of Labels to be returned. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the Board."
},
"fields": {
"type": "string",
"description": "The fields to be returned for the Labels."
},
"limit": {
"type": "integer",
"description": "The number of Labels to be returned."
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_id_lists
Get Lists on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
cards | string | No | — | Filter to apply to Cards. |
card_fields | string | No | — | all or a comma-separated list of card fields |
filter | string | No | — | Filter to apply to Lists |
fields | string | No | — | all or a comma-separated list of list fields |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
},
"cards": {
"type": "string",
"description": "Filter to apply to Cards.",
"enum": [
"all",
"closed",
"none",
"open"
]
},
"card_fields": {
"type": "string",
"description": "`all` or a comma-separated list of card [fields](/cloud/trello/guides/rest-api/object-definitions/#card-object)"
},
"filter": {
"type": "string",
"description": "Filter to apply to Lists",
"enum": [
"all",
"closed",
"none",
"open"
]
},
"fields": {
"type": "string",
"description": "`all` or a comma-separated list of list [fields](/cloud/trello/guides/rest-api/object-definitions/)"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_id_lists_filter
Get filtered Lists on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
filter | string | Yes | — | One of all, closed, none, open |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
},
"filter": {
"type": "string",
"description": "One of `all`, `closed`, `none`, `open`",
"enum": [
"all",
"closed",
"none",
"open"
]
}
},
"required": [
"PCID",
"id",
"filter"
]
}
trello_boards_get_id_members
Get the Members of a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_id_memberships
Get Memberships of a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
filter | string | No | — | One of admins, all, none, normal |
activity | boolean | No | — | Works for premium organizations only. |
orgMemberType | boolean | No | — | Shows the type of member to the org the user is. For instance, an org admin will have a orgMemberType of admin. |
member | boolean | No | — | Determines whether to include a nested member object. |
member_fields | string | No | — | Fields to show if member=true. Valid values: nested member resource fields. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
},
"filter": {
"type": "string",
"description": "One of `admins`, `all`, `none`, `normal`",
"enum": [
"admins",
"all",
"none",
"normal"
]
},
"activity": {
"type": "boolean",
"description": "Works for premium organizations only."
},
"orgMemberType": {
"type": "boolean",
"description": "Shows the type of member to the org the user is. For instance, an org admin will have a `orgMemberType` of `admin`."
},
"member": {
"type": "boolean",
"description": "Determines whether to include a [nested member object](/cloud/trello/guides/rest-api/nested-resources/)."
},
"member_fields": {
"type": "string",
"description": "Fields to show if `member=true`. Valid values: [nested member resource fields](/cloud/trello/guides/rest-api/nested-resources/)."
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_lists_id
Get a List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
fields | string | No | — | all or a comma separated list of List field names. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
},
"fields": {
"type": "string",
"description": "`all` or a comma separated list of List field names."
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_lists_id_actions
Get Actions for a List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
filter | string | No | — | A comma-separated list of action types. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
},
"filter": {
"type": "string",
"description": "A comma-separated list of [action types](https://developer.atlassian.com/cloud/trello/guides/rest-api/action-types/)."
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_lists_id_board
Get the Board a List is on Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
fields | string | No | — | all or a comma-separated list of board fields |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
},
"fields": {
"type": "string",
"description": "`all` or a comma-separated list of board [fields](/cloud/trello/guides/rest-api/object-definitions/#board-object)"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_get_lists_id_cards
Get Cards in a List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_id_checklists
Get Checklists on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_post_boards
Create a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | — | The new name for the board. 1 to 16384 characters long. |
defaultLabels | boolean | No | — | Determines whether to use the default set of labels. |
defaultLists | boolean | No | — | Determines whether to add the default set of lists to a board (To Do, Doing, Done). It is ignored if idBoardSource is provided. |
desc | string | No | — | A new description for the board, 0 to 16384 characters long |
idOrganization | string | No | — | The id or name of the Workspace the board should belong to. |
idBoardSource | string | No | — | The id of a board to copy into the new board. |
keepFromSource | string | No | — | To keep cards from the original board pass in the value cards |
powerUps | string | No | — | The Power-Ups that should be enabled on the new board. One of: all, calendar, cardAging, recap, voting. |
prefs_permissionLevel | string | No | — | The permissions level of the board. One of: org, private, public. |
prefs_voting | string | No | — | Who can vote on this board. One of disabled, members, observers, org, public. |
prefs_comments | string | No | — | Who can comment on cards on this board. One of: disabled, members, observers, org, public. |
prefs_invitations | string | No | — | Determines what types of members can invite users to join. One of: admins, members. |
prefs_selfJoin | boolean | No | — | Determines whether users can join the boards themselves or whether they have to be invited. |
prefs_cardCovers | boolean | No | — | Determines whether card covers are enabled. |
prefs_background | string | No | — | The id of a custom background or one of: blue, orange, green, red, purple, pink, lime, sky, grey. |
prefs_cardAging | string | No | — | Determines the type of card aging that should take place on the board if card aging is enabled. One of: pirate, regular. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"name": {
"type": "string",
"description": "The new name for the board. 1 to 16384 characters long."
},
"defaultLabels": {
"type": "boolean",
"description": "Determines whether to use the default set of labels."
},
"defaultLists": {
"type": "boolean",
"description": "Determines whether to add the default set of lists to a board (To Do, Doing, Done). It is ignored if `idBoardSource` is provided."
},
"desc": {
"type": "string",
"description": "A new description for the board, 0 to 16384 characters long"
},
"idOrganization": {
"type": "string",
"description": "The id or name of the Workspace the board should belong to."
},
"idBoardSource": {
"type": "string",
"description": "The id of a board to copy into the new board."
},
"keepFromSource": {
"type": "string",
"description": "To keep cards from the original board pass in the value `cards`",
"enum": [
"cards",
"none"
]
},
"powerUps": {
"type": "string",
"description": "The Power-Ups that should be enabled on the new board. One of: `all`, `calendar`, `cardAging`, `recap`, `voting`.",
"enum": [
"all",
"calendar",
"cardAging",
"recap",
"voting"
]
},
"prefs_permissionLevel": {
"type": "string",
"description": "The permissions level of the board. One of: `org`, `private`, `public`.",
"enum": [
"org",
"private",
"public"
]
},
"prefs_voting": {
"type": "string",
"description": "Who can vote on this board. One of `disabled`, `members`, `observers`, `org`, `public`.",
"enum": [
"disabled",
"members",
"observers",
"org",
"public"
]
},
"prefs_comments": {
"type": "string",
"description": "Who can comment on cards on this board. One of: `disabled`, `members`, `observers`, `org`, `public`.",
"enum": [
"disabled",
"members",
"observers",
"org",
"public"
]
},
"prefs_invitations": {
"type": "string",
"description": "Determines what types of members can invite users to join. One of: `admins`, `members`.",
"enum": [
"members",
"admins"
]
},
"prefs_selfJoin": {
"type": "boolean",
"description": "Determines whether users can join the boards themselves or whether they have to be invited."
},
"prefs_cardCovers": {
"type": "boolean",
"description": "Determines whether card covers are enabled."
},
"prefs_background": {
"type": "string",
"description": "The id of a custom background or one of: `blue`, `orange`, `green`, `red`, `purple`, `pink`, `lime`, `sky`, `grey`."
},
"prefs_cardAging": {
"type": "string",
"description": "Determines the type of card aging that should take place on the board if card aging is enabled. One of: `pirate`, `regular`.",
"enum": [
"pirate",
"regular"
]
}
},
"required": [
"PCID",
"name"
]
}
trello_boards_post_id_calendarkey_generate
Create a calendarKey for a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_post_id_emailkey_generate
Create a emailKey for a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_post_id_idtags
Create a Tag for a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
value | string | Yes | — | The id of a tag from the organization to which this board belongs. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"value": {
"type": "string",
"description": "The id of a tag from the organization to which this board belongs."
}
},
"required": [
"PCID",
"id",
"value"
]
}
trello_boards_post_id_labels
Create a Label on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
name | string | Yes | — | The name of the label to be created. 1 to 16384 characters long. |
color | string | Yes | — | Sets the color of the new label. Valid values are a label color or null. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"name": {
"type": "string",
"description": "The name of the label to be created. 1 to 16384 characters long."
},
"color": {
"type": "string",
"description": "Sets the color of the new label. Valid values are a label color or `null`."
}
},
"required": [
"PCID",
"id",
"name",
"color"
]
}
trello_boards_post_id_lists
Create a List on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
name | string | Yes | — | The name of the list to be created. 1 to 16384 characters long. |
pos | string | No | — | Determines the position of the list. Valid values: top, bottom, or a positive number. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
},
"name": {
"type": "string",
"description": "The name of the list to be created. 1 to 16384 characters long."
},
"pos": {
"type": "string",
"description": "Determines the position of the list. Valid values: `top`, `bottom`, or a positive number."
}
},
"required": [
"PCID",
"id",
"name"
]
}
trello_boards_post_id_markedasviewed
Mark Board as viewed Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_post_lists
Create a new List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | — | Name for the list |
idBoard | string | Yes | — | The long ID of the board the list should be created on |
idListSource | string | No | — | ID of the List to copy into the new List |
pos | string | No | — | Position of the list. top, bottom, or a positive floating point number |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"name": {
"type": "string",
"description": "Name for the list"
},
"idBoard": {
"type": "string",
"description": "The long ID of the board the list should be created on"
},
"idListSource": {
"type": "string",
"description": "ID of the List to copy into the new List"
},
"pos": {
"type": "string",
"description": "Position of the list. `top`, `bottom`, or a positive floating point number"
}
},
"required": [
"PCID",
"name",
"idBoard"
]
}
trello_boards_post_lists_id_archiveallcards
Archive all Cards in List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_post_lists_id_moveallcards
Move all Cards in List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
idBoard | string | Yes | — | The ID of the board the cards should be moved to |
idList | string | Yes | — | The ID of the list that the cards should be moved to |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
},
"idBoard": {
"type": "string",
"description": "The ID of the board the cards should be moved to"
},
"idList": {
"type": "string",
"description": "The ID of the list that the cards should be moved to"
}
},
"required": [
"PCID",
"id",
"idBoard",
"idList"
]
}
trello_boards_put_id
Update a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id value |
name | string | No | — | The new name for the board. 1 to 16384 characters long. |
desc | string | No | — | A new description for the board, 0 to 16384 characters long |
closed | boolean | No | — | Whether the board is closed |
subscribed | string | No | — | Whether the acting user is subscribed to the board |
idOrganization | string | No | — | The id of the Workspace the board should be moved to |
prefs/permissionLevel | string | No | — | One of: org, private, public |
prefs/selfJoin | boolean | No | — | Whether Workspace members can join the board themselves |
prefs/cardCovers | boolean | No | — | Whether card covers should be displayed on this board |
prefs/hideVotes | boolean | No | — | Determines whether the Voting Power-Up should hide who voted on cards or not. |
prefs/invitations | string | No | — | Who can invite people to this board. One of: admins, members |
prefs/voting | string | No | — | Who can vote on this board. One of disabled, members, observers, org, public |
prefs/comments | string | No | — | Who can comment on cards on this board. One of: disabled, members, observers, org, public |
prefs/background | string | No | — | The id of a custom background or one of: blue, orange, green, red, purple, pink, lime, sky, grey |
prefs/cardAging | string | No | — | One of: pirate, regular |
prefs/calendarFeedEnabled | boolean | No | — | Determines whether the calendar feed is enabled or not. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id value"
},
"name": {
"type": "string",
"description": "The new name for the board. 1 to 16384 characters long."
},
"desc": {
"type": "string",
"description": "A new description for the board, 0 to 16384 characters long"
},
"closed": {
"type": "boolean",
"description": "Whether the board is closed"
},
"subscribed": {
"type": "string",
"description": "Whether the acting user is subscribed to the board"
},
"idOrganization": {
"type": "string",
"description": "The id of the Workspace the board should be moved to"
},
"prefs/permissionLevel": {
"type": "string",
"description": "One of: org, private, public"
},
"prefs/selfJoin": {
"type": "boolean",
"description": "Whether Workspace members can join the board themselves"
},
"prefs/cardCovers": {
"type": "boolean",
"description": "Whether card covers should be displayed on this board"
},
"prefs/hideVotes": {
"type": "boolean",
"description": "Determines whether the Voting Power-Up should hide who voted on cards or not."
},
"prefs/invitations": {
"type": "string",
"description": "Who can invite people to this board. One of: admins, members"
},
"prefs/voting": {
"type": "string",
"description": "Who can vote on this board. One of disabled, members, observers, org, public"
},
"prefs/comments": {
"type": "string",
"description": "Who can comment on cards on this board. One of: disabled, members, observers, org, public"
},
"prefs/background": {
"type": "string",
"description": "The id of a custom background or one of: blue, orange, green, red, purple, pink, lime, sky, grey"
},
"prefs/cardAging": {
"type": "string",
"description": "One of: pirate, regular"
},
"prefs/calendarFeedEnabled": {
"type": "boolean",
"description": "Determines whether the calendar feed is enabled or not."
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_put_id_idboard
Move List to Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
value | string | Yes | — | The ID of the board to move the list to |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
},
"value": {
"type": "string",
"description": "The ID of the board to move the list to"
}
},
"required": [
"PCID",
"id",
"value"
]
}
trello_boards_put_id_members
Invite Member to Board via email Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the board |
email | string | Yes | — | The email address of a user to add as a member of the board. |
type | string | No | — | Valid values: admin, normal, observer. Determines what type of member the user being added should be of the board. |
fullName | string | No | — | The full name of the user to as a member of the board. Must have a length of at least 1 and cannot begin nor end with a space. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the board"
},
"email": {
"type": "string",
"description": "The email address of a user to add as a member of the board."
},
"type": {
"type": "string",
"description": "Valid values: admin, normal, observer. Determines what type of member the user being added should be of the board.",
"enum": [
"admin",
"normal",
"observer"
]
},
"fullName": {
"type": "string",
"description": "The full name of the user to as a member of the board. Must have a length of at least 1 and cannot begin nor end with a space."
}
},
"required": [
"PCID",
"id",
"email"
]
}
trello_boards_put_id_members_idmember
Add a Member to a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
idMember | string | Yes | — | The id of the member to add to the board. |
type | string | Yes | — | One of: admin, normal, observer. Determines the type of member this user will be on the board. |
allowBillableGuest | boolean | No | — | Optional param that allows organization admins to add multi-board guests onto a board. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"idMember": {
"type": "string",
"description": "The id of the member to add to the board."
},
"type": {
"type": "string",
"description": "One of: admin, normal, observer. Determines the type of member this user will be on the board.",
"enum": [
"admin",
"normal",
"observer"
]
},
"allowBillableGuest": {
"type": "boolean",
"description": "Optional param that allows organization admins to add multi-board guests onto a board."
}
},
"required": [
"PCID",
"id",
"idMember",
"type"
]
}
trello_boards_put_id_memberships_idmembership
Update Membership of Member on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
idMembership | string | Yes | — | The id of a membership that should be added to this board. |
type | string | Yes | — | One of: admin, normal, observer. Determines the type of member that this membership will be to this board. |
member_fields | string | No | — | Valid values: all, avatarHash, bio, bioData, confirmed, fullName, idPremOrgsAdmin, initials, memberType, products, status, url, username |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"idMembership": {
"type": "string",
"description": "The id of a membership that should be added to this board."
},
"type": {
"type": "string",
"description": "One of: admin, normal, observer. Determines the type of member that this membership will be to this board.",
"enum": [
"admin",
"normal",
"observer"
]
},
"member_fields": {
"type": "string",
"description": "Valid values: all, avatarHash, bio, bioData, confirmed, fullName, idPremOrgsAdmin, initials, memberType, products, status, url, username"
}
},
"required": [
"PCID",
"id",
"idMembership",
"type"
]
}
trello_boards_put_id_my_prefs_showsidebar
Update showSidebar Pref on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
value | boolean | Yes | — | Determines whether to show the side bar. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"value": {
"type": "boolean",
"description": "Determines whether to show the side bar."
}
},
"required": [
"PCID",
"id",
"value"
]
}
trello_boards_put_id_my_prefs_showsidebaractivity
Update showSidebarActivity Pref on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
value | boolean | Yes | — | Determines whether to show sidebar activity. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"value": {
"type": "boolean",
"description": "Determines whether to show sidebar activity."
}
},
"required": [
"PCID",
"id",
"value"
]
}
trello_boards_put_id_my_prefs_showsidebarboardactions
Update showSidebarBoardActions Pref on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
value | boolean | Yes | — | Determines whether to show the sidebar board actions. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"value": {
"type": "boolean",
"description": "Determines whether to show the sidebar board actions."
}
},
"required": [
"PCID",
"id",
"value"
]
}
trello_boards_put_id_my_prefs_showsidebarmembers
Update showSidebarMembers Pref on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
value | boolean | Yes | — | Determines whether to show members of the board in the sidebar. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"value": {
"type": "boolean",
"description": "Determines whether to show members of the board in the sidebar."
}
},
"required": [
"PCID",
"id",
"value"
]
}
trello_boards_put_id_myprefs_emailposition
Update emailPosition Pref on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
value | string | Yes | — | Valid values: bottom, top. Determines the position of the email address. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"value": {
"type": "string",
"description": "Valid values: bottom, top. Determines the position of the email address.",
"enum": [
"bottom",
"top"
]
}
},
"required": [
"PCID",
"id",
"value"
]
}
trello_boards_put_id_myprefs_idemaillist
Update idEmailList Pref on a Board Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The id of the board to update |
value | string | Yes | — | The id of an email list. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The id of the board to update"
},
"value": {
"type": "string",
"description": "The id of an email list."
}
},
"required": [
"PCID",
"id",
"value"
]
}
trello_boards_put_lists_id
Update a List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
name | string | No | — | New name for the list |
closed | boolean | No | — | Whether the list should be closed (archived) |
idBoard | string | No | — | ID of a board the list should be moved to |
pos | string | No | — | New position for the list: top, bottom, or a positive floating point number |
subscribed | boolean | No | — | Whether the active member is subscribed to this list |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
},
"name": {
"type": "string",
"description": "New name for the list"
},
"closed": {
"type": "boolean",
"description": "Whether the list should be closed (archived)"
},
"idBoard": {
"type": "string",
"description": "ID of a board the list should be moved to"
},
"pos": {
"type": "string",
"description": "New position for the list: `top`, `bottom`, or a positive floating point number"
},
"subscribed": {
"type": "boolean",
"description": "Whether the active member is subscribed to this list"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_put_lists_id_closed
Archive or unarchive a list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
value | string | No | — | Set to true to close (archive) the list |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
},
"value": {
"type": "string",
"description": "Set to true to close (archive) the list"
}
},
"required": [
"PCID",
"id"
]
}
trello_boards_put_lists_id_field
Update a field on a List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The ID of the list |
field | string | Yes | — | The field on the List to be updated |
value | string | No | — | The new value for the field |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The ID of the list"
},
"field": {
"type": "string",
"description": "The field on the List to be updated",
"enum": [
"name",
"pos",
"subscribed"
]
},
"value": {
"type": "string",
"description": "The new value for the field"
}
},
"required": [
"PCID",
"id",
"field"
]
}

