> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# trello-activity

> Trello Activity - Actions, notifications, search, and webhooks

**Server path:** `/trello-activity` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                            | Description                                              |
| --------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- |
| [`trello_activity_delete_actions_id`](#trello_activity_delete_actions_id)                                       | Delete an Action                                         |
| [`trello_activity_delete_actions_idaction_reactions_id`](#trello_activity_delete_actions_idaction_reactions_id) | Delete Action's Reaction                                 |
| [`trello_activity_delete_webhooks_id`](#trello_activity_delete_webhooks_id)                                     | Delete a Webhook                                         |
| [`trello_activity_get_actions_id`](#trello_activity_get_actions_id)                                             | Get an Action                                            |
| [`trello_activity_get_actions_id_board`](#trello_activity_get_actions_id_board)                                 | Get the Board for an Action                              |
| [`trello_activity_get_actions_id_card`](#trello_activity_get_actions_id_card)                                   | Get the Card for an Action                               |
| [`trello_activity_get_actions_id_field`](#trello_activity_get_actions_id_field)                                 | Get a specific field on an Action                        |
| [`trello_activity_get_actions_id_list`](#trello_activity_get_actions_id_list)                                   | Get the List for an Action                               |
| [`trello_activity_get_actions_id_member`](#trello_activity_get_actions_id_member)                               | Get the Member of an Action                              |
| [`trello_activity_get_actions_id_membercreator`](#trello_activity_get_actions_id_membercreator)                 | Get the Member Creator of an Action                      |
| [`trello_activity_get_actions_id_organization`](#trello_activity_get_actions_id_organization)                   | Get the Organization of an Action                        |
| [`trello_activity_get_actions_idaction_reactions`](#trello_activity_get_actions_idaction_reactions)             | Get Action's Reactions                                   |
| [`trello_activity_get_actions_idaction_reactions_id`](#trello_activity_get_actions_idaction_reactions_id)       | Get Action's Reaction                                    |
| [`trello_activity_get_actions_idaction_reactionsummary`](#trello_activity_get_actions_idaction_reactionsummary) | List Action's summary of Reactions                       |
| [`trello_activity_get_notifications_id`](#trello_activity_get_notifications_id)                                 | Get a Notification                                       |
| [`trello_activity_get_notifications_id_board`](#trello_activity_get_notifications_id_board)                     | Get the Board a Notification is on                       |
| [`trello_activity_get_notifications_id_card`](#trello_activity_get_notifications_id_card)                       | Get the Card a Notification is on                        |
| [`trello_activity_get_notifications_id_field`](#trello_activity_get_notifications_id_field)                     | Get a field of a Notification                            |
| [`trello_activity_get_notifications_id_list`](#trello_activity_get_notifications_id_list)                       | Get the List a Notification is on                        |
| [`trello_activity_get_notifications_id_membercreator`](#trello_activity_get_notifications_id_membercreator)     | Get the Member who created the Notification              |
| [`trello_activity_get_notifications_id_organization`](#trello_activity_get_notifications_id_organization)       | Get a Notification's associated Organization             |
| [`trello_activity_get_search`](#trello_activity_get_search)                                                     | Search Trello                                            |
| [`trello_activity_get_search_members`](#trello_activity_get_search_members)                                     | Search for Members                                       |
| [`trello_activity_get_webhooks_id`](#trello_activity_get_webhooks_id)                                           | Get a Webhook                                            |
| [`trello_activity_notificationsidmember`](#trello_activity_notificationsidmember)                               | Get the Member a Notification is about (not the creator) |
| [`trello_activity_post_actions_idaction_reactions`](#trello_activity_post_actions_idaction_reactions)           | Create Reaction for Action                               |
| [`trello_activity_post_notifications_all_read`](#trello_activity_post_notifications_all_read)                   | Mark all Notifications as read                           |
| [`trello_activity_post_webhooks`](#trello_activity_post_webhooks)                                               | Create a Webhook                                         |
| [`trello_activity_put_actions_id`](#trello_activity_put_actions_id)                                             | Update an Action                                         |
| [`trello_activity_put_actions_id_text`](#trello_activity_put_actions_id_text)                                   | Update a Comment Action                                  |
| [`trello_activity_put_notifications_id`](#trello_activity_put_notifications_id)                                 | Update a Notification's read status                      |
| [`trello_activity_put_notifications_id_unread`](#trello_activity_put_notifications_id_unread)                   | Update Notification's read status                        |
| [`trello_activity_put_webhooks_id`](#trello_activity_put_webhooks_id)                                           | Update a Webhook                                         |
| [`trello_activity_webhooksidfield`](#trello_activity_webhooksidfield)                                           | Get a field on a Webhook                                 |

***

## trello\_activity\_delete\_actions\_id

Delete an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description          |
| --------- | ------ | -------- | ------- | -------------------- |
| `id`      | string | Yes      | —       | The ID of the Action |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the Action"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_delete\_actions\_idaction\_reactions\_id

Delete Action's Reaction

**Parameters:**

| Parameter  | Type   | Required | Default | Description            |
| ---------- | ------ | -------- | ------- | ---------------------- |
| `idAction` | string | Yes      | —       | The ID of the Action   |
| `id`       | string | Yes      | —       | The ID of the reaction |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "idAction": {
        "type": "string",
        "description": "The ID of the Action"
      },
      "id": {
        "type": "string",
        "description": "The ID of the reaction"
      }
    },
    "required": [
      "PCID",
      "idAction",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_delete\_webhooks\_id

Delete a Webhook

**Parameters:**

| Parameter | Type   | Required | Default | Description                    |
| --------- | ------ | -------- | ------- | ------------------------------ |
| `id`      | string | Yes      | —       | ID of the webhook to retrieve. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "ID of the webhook to retrieve."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_id

Get an Action

**Parameters:**

| Parameter              | Type    | Required | Default | Description                                                        |
| ---------------------- | ------- | -------- | ------- | ------------------------------------------------------------------ |
| `id`                   | string  | Yes      | —       | The ID of the Action                                               |
| `display`              | boolean | No       | —       | The display value                                                  |
| `entities`             | boolean | No       | —       | The entities value                                                 |
| `fields`               | string  | No       | —       | `all` or a comma-separated list of action fields                   |
| `member`               | boolean | No       | —       | The member value                                                   |
| `member_fields`        | string  | No       | —       | `all` or a comma-separated list of member fields                   |
| `memberCreator`        | boolean | No       | —       | Whether to include the member object for the creator of the action |
| `memberCreator_fields` | string  | No       | —       | `all` or a comma-separated list of member fields                   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the Action"
      },
      "display": {
        "type": "boolean",
        "description": "The display value"
      },
      "entities": {
        "type": "boolean",
        "description": "The entities value"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of action [fields](/cloud/trello/guides/rest-api/object-definitions/#action-object)"
      },
      "member": {
        "type": "boolean",
        "description": "The member value"
      },
      "member_fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of member [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      },
      "memberCreator": {
        "type": "boolean",
        "description": "Whether to include the member object for the creator of the action"
      },
      "memberCreator_fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of member [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_id\_board

Get the Board for an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description                                     |
| --------- | ------ | -------- | ------- | ----------------------------------------------- |
| `id`      | string | Yes      | —       | The ID of the action                            |
| `fields`  | string | No       | —       | `all` or a comma-separated list of board fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the action"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of board fields"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_id\_card

Get the Card for an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description                                    |
| --------- | ------ | -------- | ------- | ---------------------------------------------- |
| `id`      | string | Yes      | —       | The ID of the action                           |
| `fields`  | string | No       | —       | `all` or a comma-separated list of card fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the action"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of card fields"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_id\_field

Get a specific field on an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description          |
| --------- | ------ | -------- | ------- | -------------------- |
| `id`      | string | Yes      | —       | The ID of the Action |
| `field`   | string | Yes      | —       | An action field      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the Action"
      },
      "field": {
        "type": "string",
        "description": "An action field",
        "enum": [
          "id",
          "idMemberCreator",
          "data",
          "type",
          "date",
          "limits",
          "display",
          "memberCreator"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "field"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_id\_list

Get the List for an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description                                    |
| --------- | ------ | -------- | ------- | ---------------------------------------------- |
| `id`      | string | Yes      | —       | The ID of the action                           |
| `fields`  | string | No       | —       | `all` or a comma-separated list of list fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the action"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of list fields"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_id\_member

Get the Member of an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description                                      |
| --------- | ------ | -------- | ------- | ------------------------------------------------ |
| `id`      | string | Yes      | —       | The ID of the Action                             |
| `fields`  | string | No       | —       | `all` or a comma-separated list of member fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the Action"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of member fields"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_id\_membercreator

Get the Member Creator of an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description                                      |
| --------- | ------ | -------- | ------- | ------------------------------------------------ |
| `id`      | string | Yes      | —       | The ID of the Action                             |
| `fields`  | string | No       | —       | `all` or a comma-separated list of member fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the Action"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of member fields"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_id\_organization

Get the Organization of an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description                                            |
| --------- | ------ | -------- | ------- | ------------------------------------------------------ |
| `id`      | string | Yes      | —       | The ID of the action                                   |
| `fields`  | string | No       | —       | `all` or a comma-separated list of organization fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the action"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of organization fields"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_idaction\_reactions

Get Action's Reactions

**Parameters:**

| Parameter  | Type    | Required | Default | Description                                                                  |
| ---------- | ------- | -------- | ------- | ---------------------------------------------------------------------------- |
| `idAction` | string  | Yes      | —       | The ID of the action                                                         |
| `member`   | boolean | No       | —       | Whether to load the member as a nested resource. See Members Nested Resource |
| `emoji`    | boolean | No       | —       | Whether to load the emoji as a nested resource.                              |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "idAction": {
        "type": "string",
        "description": "The ID of the action"
      },
      "member": {
        "type": "boolean",
        "description": "Whether to load the member as a nested resource. See [Members Nested Resource](/cloud/trello/guides/rest-api/nested-resources/#members-nested-resource)"
      },
      "emoji": {
        "type": "boolean",
        "description": "Whether to load the emoji as a nested resource."
      }
    },
    "required": [
      "PCID",
      "idAction"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_idaction\_reactions\_id

Get Action's Reaction

**Parameters:**

| Parameter  | Type    | Required | Default | Description                                                                  |
| ---------- | ------- | -------- | ------- | ---------------------------------------------------------------------------- |
| `idAction` | string  | Yes      | —       | The ID of the Action                                                         |
| `id`       | string  | Yes      | —       | The ID of the reaction                                                       |
| `member`   | boolean | No       | —       | Whether to load the member as a nested resource. See Members Nested Resource |
| `emoji`    | boolean | No       | —       | Whether to load the emoji as a nested resource.                              |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "idAction": {
        "type": "string",
        "description": "The ID of the Action"
      },
      "id": {
        "type": "string",
        "description": "The ID of the reaction"
      },
      "member": {
        "type": "boolean",
        "description": "Whether to load the member as a nested resource. See [Members Nested Resource](/cloud/trello/guides/rest-api/nested-resources/#members-nested-resource)"
      },
      "emoji": {
        "type": "boolean",
        "description": "Whether to load the emoji as a nested resource."
      }
    },
    "required": [
      "PCID",
      "idAction",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_actions\_idaction\_reactionsummary

List Action's summary of Reactions

**Parameters:**

| Parameter  | Type   | Required | Default | Description          |
| ---------- | ------ | -------- | ------- | -------------------- |
| `idAction` | string | Yes      | —       | The ID of the action |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "idAction": {
        "type": "string",
        "description": "The ID of the action"
      }
    },
    "required": [
      "PCID",
      "idAction"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_notifications\_id

Get a Notification

**Parameters:**

| Parameter              | Type    | Required | Default | Description                                             |
| ---------------------- | ------- | -------- | ------- | ------------------------------------------------------- |
| `id`                   | string  | Yes      | —       | The ID of the notification                              |
| `board`                | boolean | No       | —       | Whether to include the board object                     |
| `board_fields`         | string  | No       | —       | `all` or a comma-separated list of board fields         |
| `card`                 | boolean | No       | —       | Whether to include the card object                      |
| `card_fields`          | string  | No       | —       | `all` or a comma-separated list of card fields          |
| `display`              | boolean | No       | —       | Whether to include the display object with the results  |
| `entities`             | boolean | No       | —       | Whether to include the entities object with the results |
| `fields`               | string  | No       | —       | `all` or a comma-separated list of notification fields  |
| `list`                 | boolean | No       | —       | Whether to include the list object                      |
| `member`               | boolean | No       | —       | Whether to include the member object                    |
| `member_fields`        | string  | No       | —       | `all` or a comma-separated list of member fields        |
| `memberCreator`        | boolean | No       | —       | Whether to include the member object of the creator     |
| `memberCreator_fields` | string  | No       | —       | `all` or a comma-separated list of member fields        |
| `organization`         | boolean | No       | —       | Whether to include the organization object              |
| `organization_fields`  | string  | No       | —       | `all` or a comma-separated list of organization fields  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "board": {
        "type": "boolean",
        "description": "Whether to include the board object"
      },
      "board_fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of board [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      },
      "card": {
        "type": "boolean",
        "description": "Whether to include the card object"
      },
      "card_fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of card [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      },
      "display": {
        "type": "boolean",
        "description": "Whether to include the display object with the results"
      },
      "entities": {
        "type": "boolean",
        "description": "Whether to include the entities object with the results"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of notification [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      },
      "list": {
        "type": "boolean",
        "description": "Whether to include the list object"
      },
      "member": {
        "type": "boolean",
        "description": "Whether to include the member object"
      },
      "member_fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of member [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      },
      "memberCreator": {
        "type": "boolean",
        "description": "Whether to include the member object of the creator"
      },
      "memberCreator_fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of member [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      },
      "organization": {
        "type": "boolean",
        "description": "Whether to include the organization object"
      },
      "organization_fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of organization [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_notifications\_id\_board

Get the Board a Notification is on

**Parameters:**

| Parameter | Type   | Required | Default | Description                                    |
| --------- | ------ | -------- | ------- | ---------------------------------------------- |
| `id`      | string | Yes      | —       | The ID of the notification                     |
| `fields`  | string | No       | —       | `all` or a comma-separated list of boardfields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of board[fields](/cloud/trello/guides/rest-api/object-definitions/)"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_notifications\_id\_card

Get the Card a Notification is on

**Parameters:**

| Parameter | Type   | Required | Default | Description                                    |
| --------- | ------ | -------- | ------- | ---------------------------------------------- |
| `id`      | string | Yes      | —       | The ID of the notification                     |
| `fields`  | string | No       | —       | `all` or a comma-separated list of card fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of card [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_notifications\_id\_field

Get a field of a Notification

**Parameters:**

| Parameter | Type   | Required | Default | Description                |
| --------- | ------ | -------- | ------- | -------------------------- |
| `id`      | string | Yes      | —       | The ID of the notification |
| `field`   | string | Yes      | —       | A notification field       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "field": {
        "type": "string",
        "description": "A notification [field](/cloud/trello/guides/rest-api/object-definitions/)",
        "enum": [
          "id",
          "unread",
          "type",
          "date",
          "dateRead",
          "data",
          "card",
          "board",
          "idMemberCreator",
          "idAction",
          "reactions"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "field"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_notifications\_id\_list

Get the List a Notification is on

**Parameters:**

| Parameter | Type   | Required | Default | Description                                    |
| --------- | ------ | -------- | ------- | ---------------------------------------------- |
| `id`      | string | Yes      | —       | The ID of the notification                     |
| `fields`  | string | No       | —       | `all` or a comma-separated list of list fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of list [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_notifications\_id\_membercreator

Get the Member who created the Notification

**Parameters:**

| Parameter | Type   | Required | Default | Description                                      |
| --------- | ------ | -------- | ------- | ------------------------------------------------ |
| `id`      | string | Yes      | —       | The ID of the notification                       |
| `fields`  | string | No       | —       | `all` or a comma-separated list of member fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of member [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_notifications\_id\_organization

Get a Notification's associated Organization

**Parameters:**

| Parameter | Type   | Required | Default | Description                                            |
| --------- | ------ | -------- | ------- | ------------------------------------------------------ |
| `id`      | string | Yes      | —       | The ID of the notification                             |
| `fields`  | string | No       | —       | `all` or a comma-separated list of organization fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of organization [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_search

Search Trello

**Parameters:**

| Parameter             | Type    | Required | Default | Description                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| --------------------- | ------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `query`               | string  | Yes      | —       | The search query with a length of 1 to 16384 characters                                                                                                                                                                                                                                                                                                                                                                                              |
| `idBoards`            | string  | No       | —       | `mine` or a comma-separated list of Board IDs                                                                                                                                                                                                                                                                                                                                                                                                        |
| `idOrganizations`     | string  | No       | —       | A comma-separated list of Organization IDs                                                                                                                                                                                                                                                                                                                                                                                                           |
| `idCards`             | string  | No       | —       | A comma-separated list of Card IDs                                                                                                                                                                                                                                                                                                                                                                                                                   |
| `modelTypes`          | string  | No       | —       | What type or types of Trello objects you want to search. all or a comma-separated list of: `actions`, `boards`, `cards`, `members`, `organizations`                                                                                                                                                                                                                                                                                                  |
| `board_fields`        | string  | No       | —       | all or a comma-separated list of: `closed`, `dateLastActivity`, `dateLastView`, `desc`, `descData`, `idOrganization`, `invitations`, `invited`, `labelNames`, `memberships`, `name`, `pinned`, `powerUps`, `prefs`, `shortLink`, `shortUrl`, `starred`, `subscribed`, `url`                                                                                                                                                                          |
| `boards_limit`        | integer | No       | —       | The maximum number of boards returned. Maximum: 1000                                                                                                                                                                                                                                                                                                                                                                                                 |
| `board_organization`  | boolean | No       | —       | Whether to include the parent organization with board results                                                                                                                                                                                                                                                                                                                                                                                        |
| `card_fields`         | string  | No       | —       | all or a comma-separated list of: `badges`, `checkItemStates`, `closed`, `dateLastActivity`, `desc`, `descData`, `due`, `idAttachmentCover`, `idBoard`, `idChecklists`, `idLabels`, `idList`, `idMembers`, `idMembersVoted`, `idShort`, `labels`, `manualCoverAttachment`, `name`, `pos`, `shortLink`, `shortUrl`, `subscribed`, `url`                                                                                                               |
| `cards_limit`         | integer | No       | —       | The maximum number of cards to return. Maximum: 1000                                                                                                                                                                                                                                                                                                                                                                                                 |
| `cards_page`          | number  | No       | —       | The page of results for cards. Maximum: 100                                                                                                                                                                                                                                                                                                                                                                                                          |
| `card_board`          | boolean | No       | —       | Whether to include the parent board with card results                                                                                                                                                                                                                                                                                                                                                                                                |
| `card_list`           | boolean | No       | —       | Whether to include the parent list with card results                                                                                                                                                                                                                                                                                                                                                                                                 |
| `card_members`        | boolean | No       | —       | Whether to include member objects with card results                                                                                                                                                                                                                                                                                                                                                                                                  |
| `card_stickers`       | boolean | No       | —       | Whether to include sticker objects with card results                                                                                                                                                                                                                                                                                                                                                                                                 |
| `card_attachments`    | string  | No       | —       | Whether to include attachment objects with card results. A boolean value (true or false) or cover for only card cover attachments.                                                                                                                                                                                                                                                                                                                   |
| `organization_fields` | string  | No       | —       | all or a comma-separated list of billableMemberCount, desc, descData, displayName, idBoards, invitations, invited, logoHash, memberships, name, powerUps, prefs, premiumFeatures, products, url, website                                                                                                                                                                                                                                             |
| `organizations_limit` | integer | No       | —       | The maximum number of Workspaces to return. Maximum 1000                                                                                                                                                                                                                                                                                                                                                                                             |
| `member_fields`       | string  | No       | —       | all or a comma-separated list of: avatarHash, bio, bioData, confirmed, fullName, idPremOrgsAdmin, initials, memberType, products, status, url, username                                                                                                                                                                                                                                                                                              |
| `members_limit`       | integer | No       | —       | The maximum number of members to return. Maximum 1000                                                                                                                                                                                                                                                                                                                                                                                                |
| `partial`             | boolean | No       | —       | By default, Trello searches for each word in your query against exactly matching words within Member content. Specifying partial to be true means that we will look for content that starts with any of the words in your query.  If you are looking for a Card titled "My Development Status Report", by default you would need to search for "Development". If you have partial enabled, you will be able to search for "dev" but not "velopment". |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "query": {
        "type": "string",
        "description": "The search query with a length of 1 to 16384 characters"
      },
      "idBoards": {
        "type": "string",
        "description": "`mine` or a comma-separated list of Board IDs"
      },
      "idOrganizations": {
        "type": "string",
        "description": "A comma-separated list of Organization IDs"
      },
      "idCards": {
        "type": "string",
        "description": "A comma-separated list of Card IDs"
      },
      "modelTypes": {
        "type": "string",
        "description": "What type or types of Trello objects you want to search. all or a comma-separated list of: `actions`, `boards`, `cards`, `members`, `organizations`"
      },
      "board_fields": {
        "type": "string",
        "description": "all or a comma-separated list of: `closed`, `dateLastActivity`, `dateLastView`, `desc`, `descData`, `idOrganization`, `invitations`, `invited`, `labelNames`, `memberships`, `name`, `pinned`, `powerUps`, `prefs`, `shortLink`, `shortUrl`, `starred`, `subscribed`, `url`"
      },
      "boards_limit": {
        "type": "integer",
        "description": "The maximum number of boards returned. Maximum: 1000"
      },
      "board_organization": {
        "type": "boolean",
        "description": "Whether to include the parent organization with board results"
      },
      "card_fields": {
        "type": "string",
        "description": "all or a comma-separated list of: `badges`, `checkItemStates`, `closed`, `dateLastActivity`, `desc`, `descData`, `due`, `idAttachmentCover`, `idBoard`, `idChecklists`, `idLabels`, `idList`, `idMembers`, `idMembersVoted`, `idShort`, `labels`, `manualCoverAttachment`, `name`, `pos`, `shortLink`, `shortUrl`, `subscribed`, `url`"
      },
      "cards_limit": {
        "type": "integer",
        "description": "The maximum number of cards to return. Maximum: 1000"
      },
      "cards_page": {
        "type": "number",
        "description": "The page of results for cards. Maximum: 100"
      },
      "card_board": {
        "type": "boolean",
        "description": "Whether to include the parent board with card results"
      },
      "card_list": {
        "type": "boolean",
        "description": "Whether to include the parent list with card results"
      },
      "card_members": {
        "type": "boolean",
        "description": "Whether to include member objects with card results"
      },
      "card_stickers": {
        "type": "boolean",
        "description": "Whether to include sticker objects with card results"
      },
      "card_attachments": {
        "type": "string",
        "description": "Whether to include attachment objects with card results. A boolean value (true or false) or cover for only card cover attachments."
      },
      "organization_fields": {
        "type": "string",
        "description": "all or a comma-separated list of billableMemberCount, desc, descData, displayName, idBoards, invitations, invited, logoHash, memberships, name, powerUps, prefs, premiumFeatures, products, url, website"
      },
      "organizations_limit": {
        "type": "integer",
        "description": "The maximum number of Workspaces to return. Maximum 1000"
      },
      "member_fields": {
        "type": "string",
        "description": "all or a comma-separated list of: avatarHash, bio, bioData, confirmed, fullName, idPremOrgsAdmin, initials, memberType, products, status, url, username"
      },
      "members_limit": {
        "type": "integer",
        "description": "The maximum number of members to return. Maximum 1000"
      },
      "partial": {
        "type": "boolean",
        "description": "By default, Trello searches for each word in your query against exactly matching words within Member content. Specifying partial to be true means that we will look for content that starts with any of the words in your query.  If you are looking for a Card titled \"My Development Status Report\", by default you would need to search for \"Development\". If you have partial enabled, you will be able to search for \"dev\" but not \"velopment\"."
      }
    },
    "required": [
      "PCID",
      "query"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_search\_members

Search for Members

**Parameters:**

| Parameter        | Type    | Required | Default | Description                                             |
| ---------------- | ------- | -------- | ------- | ------------------------------------------------------- |
| `query`          | string  | Yes      | —       | Search query 1 to 16384 characters long                 |
| `limit`          | integer | No       | —       | The maximum number of results to return. Maximum of 20. |
| `idBoard`        | string  | No       | —       | Id Board                                                |
| `idOrganization` | string  | No       | —       | Id Organization                                         |
| `onlyOrgMembers` | boolean | No       | —       | Only Org Members                                        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "query": {
        "type": "string",
        "description": "Search query 1 to 16384 characters long"
      },
      "limit": {
        "type": "integer",
        "description": "The maximum number of results to return. Maximum of 20."
      },
      "idBoard": {
        "type": "string",
        "description": "Id Board"
      },
      "idOrganization": {
        "type": "string",
        "description": "Id Organization"
      },
      "onlyOrgMembers": {
        "type": "boolean",
        "description": "Only Org Members"
      }
    },
    "required": [
      "PCID",
      "query"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_get\_webhooks\_id

Get a Webhook

**Parameters:**

| Parameter | Type   | Required | Default | Description                    |
| --------- | ------ | -------- | ------- | ------------------------------ |
| `id`      | string | Yes      | —       | ID of the webhook to retrieve. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "ID of the webhook to retrieve."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_notificationsidmember

Get the Member a Notification is about (not the creator)

**Parameters:**

| Parameter | Type   | Required | Default | Description                                      |
| --------- | ------ | -------- | ------- | ------------------------------------------------ |
| `id`      | string | Yes      | —       | The ID of the notification                       |
| `fields`  | string | No       | —       | `all` or a comma-separated list of member fields |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of member [fields](/cloud/trello/guides/rest-api/object-definitions/)"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_post\_actions\_idaction\_reactions

Create Reaction for Action

**Parameters:**

| Parameter       | Type   | Required | Default | Description                                             |
| --------------- | ------ | -------- | ------- | ------------------------------------------------------- |
| `idAction`      | string | Yes      | —       | The ID of the action                                    |
| `native`        | string | No       | —       | The emoji to add as a native unicode emoji. See /emoji  |
| `shortName`     | string | No       | —       | The primary `shortName` of the emoji to add. See /emoji |
| `skinVariation` | string | No       | —       | The `skinVariation` of the emoji to add. See /emoji     |
| `unified`       | string | No       | —       | The `unified` value of the emoji to add. See /emoji     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "idAction": {
        "type": "string",
        "description": "The ID of the action"
      },
      "native": {
        "type": "string",
        "description": "The emoji to add as a native unicode emoji. See [/emoji](#emoji)"
      },
      "shortName": {
        "type": "string",
        "description": "The primary `shortName` of the emoji to add. See [/emoji](#emoji)"
      },
      "skinVariation": {
        "type": "string",
        "description": "The `skinVariation` of the emoji to add. See [/emoji](#emoji)"
      },
      "unified": {
        "type": "string",
        "description": "The `unified` value of the emoji to add. See [/emoji](#emoji)"
      }
    },
    "required": [
      "PCID",
      "idAction"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_post\_notifications\_all\_read

Mark all Notifications as read

**Parameters:**

| Parameter | Type    | Required | Default | Description                                                                                                                                                                                                                                                    |
| --------- | ------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `read`    | boolean | No       | —       | Boolean to specify whether to mark as read or unread (defaults to `true`, marking as read)                                                                                                                                                                     |
| `ids`     | string  | No       | —       | A comma-seperated list of IDs. Allows specifying an array of notification IDs to change the read state for. This will become useful as we add grouping of notifications to the UI, with a single button to mark all notifications in the group as read/unread. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "read": {
        "type": "boolean",
        "description": "Boolean to specify whether to mark as read or unread (defaults to `true`, marking as read)"
      },
      "ids": {
        "type": "string",
        "description": "A comma-seperated list of IDs. Allows specifying an array of notification IDs to change the read state for. This will become useful as we add grouping of notifications to the UI, with a single button to mark all notifications in the group as read/unread."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_post\_webhooks

Create a Webhook

**Parameters:**

| Parameter     | Type    | Required | Default | Description                                                           |
| ------------- | ------- | -------- | ------- | --------------------------------------------------------------------- |
| `description` | string  | No       | —       | A string with a length from `0` to `16384`.                           |
| `callbackURL` | string  | Yes      | —       | A valid URL that is reachable with a `HEAD` and `POST` request.       |
| `idModel`     | string  | Yes      | —       | ID of the model to be monitored                                       |
| `active`      | boolean | No       | —       | Determines whether the webhook is active and sending `POST` requests. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "description": {
        "type": "string",
        "description": "A string with a length from `0` to `16384`."
      },
      "callbackURL": {
        "type": "string",
        "description": "A valid URL that is reachable with a `HEAD` and `POST` request."
      },
      "idModel": {
        "type": "string",
        "description": "ID of the model to be monitored"
      },
      "active": {
        "type": "boolean",
        "description": "Determines whether the webhook is active and sending `POST` requests."
      }
    },
    "required": [
      "PCID",
      "callbackURL",
      "idModel"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_put\_actions\_id

Update an Action

**Parameters:**

| Parameter | Type   | Required | Default | Description                  |
| --------- | ------ | -------- | ------- | ---------------------------- |
| `id`      | string | Yes      | —       | The ID of the Action         |
| `text`    | string | Yes      | —       | The new text for the comment |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the Action"
      },
      "text": {
        "type": "string",
        "description": "The new text for the comment"
      }
    },
    "required": [
      "PCID",
      "id",
      "text"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_put\_actions\_id\_text

Update a Comment Action

**Parameters:**

| Parameter | Type   | Required | Default | Description                    |
| --------- | ------ | -------- | ------- | ------------------------------ |
| `id`      | string | Yes      | —       | The ID of the action to update |
| `value`   | string | Yes      | —       | The new text for the comment   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the action to update"
      },
      "value": {
        "type": "string",
        "description": "The new text for the comment"
      }
    },
    "required": [
      "PCID",
      "id",
      "value"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_put\_notifications\_id

Update a Notification's read status

**Parameters:**

| Parameter | Type    | Required | Default | Description                                              |
| --------- | ------- | -------- | ------- | -------------------------------------------------------- |
| `id`      | string  | Yes      | —       | The ID of the notification                               |
| `unread`  | boolean | No       | —       | Whether the notification should be marked as read or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "unread": {
        "type": "boolean",
        "description": "Whether the notification should be marked as read or not"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_put\_notifications\_id\_unread

Update Notification's read status

**Parameters:**

| Parameter | Type   | Required | Default | Description                |
| --------- | ------ | -------- | ------- | -------------------------- |
| `id`      | string | Yes      | —       | The ID of the notification |
| `value`   | string | No       | —       | The value value            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the notification"
      },
      "value": {
        "type": "string",
        "description": "The value value"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_put\_webhooks\_id

Update a Webhook

**Parameters:**

| Parameter     | Type    | Required | Default | Description                                                           |
| ------------- | ------- | -------- | ------- | --------------------------------------------------------------------- |
| `id`          | string  | Yes      | —       | ID of the webhook to retrieve.                                        |
| `description` | string  | No       | —       | A string with a length from `0` to `16384`.                           |
| `callbackURL` | string  | No       | —       | A valid URL that is reachable with a `HEAD` and `POST` request.       |
| `idModel`     | string  | No       | —       | ID of the model to be monitored                                       |
| `active`      | boolean | No       | —       | Determines whether the webhook is active and sending `POST` requests. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "ID of the webhook to retrieve."
      },
      "description": {
        "type": "string",
        "description": "A string with a length from `0` to `16384`."
      },
      "callbackURL": {
        "type": "string",
        "description": "A valid URL that is reachable with a `HEAD` and `POST` request."
      },
      "idModel": {
        "type": "string",
        "description": "ID of the model to be monitored"
      },
      "active": {
        "type": "boolean",
        "description": "Determines whether the webhook is active and sending `POST` requests."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_activity\_webhooksidfield

Get a field on a Webhook

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                  |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------- |
| `id`      | string | Yes      | —       | ID of the webhook.                                                           |
| `field`   | string | Yes      | —       | Field to retrieve. One of: `active`, `callbackURL`, `description`, `idModel` |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "ID of the webhook."
      },
      "field": {
        "type": "string",
        "description": "Field to retrieve. One of: `active`, `callbackURL`, `description`, `idModel`",
        "enum": [
          "active",
          "callbackURL",
          "description",
          "idModel",
          "consecutiveFailures",
          "firstConsecutiveFailDate"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "field"
    ]
  }
  ```
</Expandable>
