> ## 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-organizations

> Trello Organizations - Manage workspaces and teams

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

## Tools

| Tool                                                                                                                    | Description                                                                |
| ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
| [`trello_organizations_delete_id`](#trello_organizations_delete_id)                                                     | Delete an Organization                                                     |
| [`trello_organizations_delete_id_logo`](#trello_organizations_delete_id_logo)                                           | Delete Logo for Organization                                               |
| [`trello_organizations_delete_id_members`](#trello_organizations_delete_id_members)                                     | Remove a Member from an Organization                                       |
| [`trello_organizations_delete_id_prefs_associateddomain`](#trello_organizations_delete_id_prefs_associateddomain)       | Remove the associated Google Apps domain from a Workspace                  |
| [`trello_organizations_delete_id_prefs_orginviterestrict`](#trello_organizations_delete_id_prefs_orginviterestrict)     | Delete the email domain restriction on who can be invited to the Workspace |
| [`trello_organizations_delete_id_tags_idtag`](#trello_organizations_delete_id_tags_idtag)                               | Delete an Organization's Tag                                               |
| [`trello_organizations_get_id`](#trello_organizations_get_id)                                                           | Get an Organization                                                        |
| [`trello_organizations_get_id_actions`](#trello_organizations_get_id_actions)                                           | Get Actions for Organization                                               |
| [`trello_organizations_get_id_boards`](#trello_organizations_get_id_boards)                                             | Get Boards in an Organization                                              |
| [`trello_organizations_get_id_exports`](#trello_organizations_get_id_exports)                                           | Retrieve Organization's Exports                                            |
| [`trello_organizations_get_id_field`](#trello_organizations_get_id_field)                                               | Get field on Organization                                                  |
| [`trello_organizations_get_id_members`](#trello_organizations_get_id_members)                                           | Get the Members of an Organization                                         |
| [`trello_organizations_get_id_memberships`](#trello_organizations_get_id_memberships)                                   | Get Memberships of an Organization                                         |
| [`trello_organizations_get_id_memberships_idmembership`](#trello_organizations_get_id_memberships_idmembership)         | Get a Membership of an Organization                                        |
| [`trello_organizations_get_id_newbillableguests_idboard`](#trello_organizations_get_id_newbillableguests_idboard)       | Get Organizations new billable guests                                      |
| [`trello_organizations_get_id_plugindata`](#trello_organizations_get_id_plugindata)                                     | Get the pluginData Scoped to Organization                                  |
| [`trello_organizations_get_id_tags`](#trello_organizations_get_id_tags)                                                 | Get Tags of an Organization                                                |
| [`trello_organizations_id_members_idmember_all`](#trello_organizations_id_members_idmember_all)                         | Remove a Member from an Organization and all Organization Boards           |
| [`trello_organizations_post_id_exports`](#trello_organizations_post_id_exports)                                         | Create Export for Organizations                                            |
| [`trello_organizations_post_id_logo`](#trello_organizations_post_id_logo)                                               | Update logo for an Organization                                            |
| [`trello_organizations_post_id_tags`](#trello_organizations_post_id_tags)                                               | Create a Tag in Organization                                               |
| [`trello_organizations_post_organizations`](#trello_organizations_post_organizations)                                   | Create a new Organization                                                  |
| [`trello_organizations_put_id`](#trello_organizations_put_id)                                                           | Update an Organization                                                     |
| [`trello_organizations_put_id_members`](#trello_organizations_put_id_members)                                           | Update an Organization's Members                                           |
| [`trello_organizations_put_id_members_idmember`](#trello_organizations_put_id_members_idmember)                         | Update a Member of an Organization                                         |
| [`trello_organizations_put_id_members_idmember_deactivated`](#trello_organizations_put_id_members_idmember_deactivated) | Deactivate or reactivate a member of an Organization                       |

***

## trello\_organizations\_delete\_id

Delete an Organization

**Parameters:**

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

<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 or name of the Organization"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_delete\_id\_logo

Delete Logo for Organization

**Parameters:**

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

<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 or name of the organization"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_delete\_id\_members

Remove a Member from an Organization

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                       |
| ---------- | ------ | -------- | ------- | ------------------------------------------------- |
| `id`       | object | Yes      | —       | The ID or name of the organization                |
| `idMember` | string | Yes      | —       | The ID of the Member to remove from the Workspace |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "description": "The ID or name of the organization"
      },
      "idMember": {
        "type": "string",
        "description": "The ID of the Member to remove from the Workspace"
      }
    },
    "required": [
      "PCID",
      "id",
      "idMember"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_delete\_id\_prefs\_associateddomain

Remove the associated Google Apps domain from a Workspace

**Parameters:**

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

<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 or name of the organization"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_delete\_id\_prefs\_orginviterestrict

Delete the email domain restriction on who can be invited to the Workspace

**Parameters:**

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

<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 or name of the organization"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_delete\_id\_tags\_idtag

Delete an Organization's Tag

**Parameters:**

| Parameter | Type   | Required | Default | Description                        |
| --------- | ------ | -------- | ------- | ---------------------------------- |
| `id`      | string | Yes      | —       | The ID or name of the organization |
| `idTag`   | string | Yes      | —       | The ID of the tag to delete        |

<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 or name of the organization"
      },
      "idTag": {
        "type": "string",
        "description": "The ID of the tag to delete"
      }
    },
    "required": [
      "PCID",
      "id",
      "idTag"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id

Get an Organization

**Parameters:**

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

<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 or name of the Organization"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_actions

Get Actions for Organization

**Parameters:**

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

<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 or name of the organization"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_boards

Get Boards in an Organization

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                               |
| --------- | ------ | -------- | ------- | ----------------------------------------------------------------------------------------- |
| `id`      | string | Yes      | —       | The ID or name of the organization                                                        |
| `filter`  | string | No       | —       | `all` or a comma-separated list of: `open`, `closed`, `members`, `organization`, `public` |
| `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 or name of the organization"
      },
      "filter": {
        "type": "string",
        "description": "`all` or a comma-separated list of: `open`, `closed`, `members`, `organization`, `public`",
        "enum": [
          "all",
          "open",
          "closed",
          "members",
          "organization",
          "public"
        ]
      },
      "fields": {
        "type": "string",
        "description": "`all` or a comma-separated list of board [fields](/cloud/trello/guides/rest-api/object-definitions/)",
        "enum": [
          "id",
          "name",
          "desc",
          "descData",
          "closed",
          "idMemberCreator",
          "idOrganization",
          "pinned",
          "url",
          "shortUrl",
          "prefs",
          "labelNames",
          "starred",
          "limits",
          "memberships",
          "enterpriseOwned"
        ]
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_exports

Retrieve Organization's Exports

**Parameters:**

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

<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 or name of the Workspace"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_field

Get field on Organization

**Parameters:**

| Parameter | Type   | Required | Default | Description                        |
| --------- | ------ | -------- | ------- | ---------------------------------- |
| `id`      | string | Yes      | —       | The ID or name of the organization |
| `field`   | string | Yes      | —       | An organization 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 or name of the organization"
      },
      "field": {
        "type": "string",
        "description": "An organization [field](/cloud/trello/guides/rest-api/object-definitions/)",
        "enum": [
          "id",
          "name"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "field"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_members

Get the Members of an Organization

**Parameters:**

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

<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 or name of the Organization"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_memberships

Get Memberships of an Organization

**Parameters:**

| Parameter | Type    | Required | Default | Description                                                                          |
| --------- | ------- | -------- | ------- | ------------------------------------------------------------------------------------ |
| `id`      | string  | Yes      | —       | The ID or name of the organization                                                   |
| `filter`  | string  | No       | —       | `all` or a comma-separated list of: `active`, `admin`, `deactivated`, `me`, `normal` |
| `member`  | boolean | No       | —       | Whether to include the Member objects with the Memberships                           |

<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 or name of the organization"
      },
      "filter": {
        "type": "string",
        "description": "`all` or a comma-separated list of: `active`, `admin`, `deactivated`, `me`, `normal`",
        "enum": [
          "all",
          "active",
          "admin",
          "deactivated",
          "me",
          "normal"
        ]
      },
      "member": {
        "type": "boolean",
        "description": "Whether to include the Member objects with the Memberships"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_memberships\_idmembership

Get a Membership of an Organization

**Parameters:**

| Parameter      | Type    | Required | Default | Description                                          |
| -------------- | ------- | -------- | ------- | ---------------------------------------------------- |
| `id`           | string  | Yes      | —       | The ID or name of the organization                   |
| `idMembership` | string  | Yes      | —       | The ID of the membership to load                     |
| `member`       | boolean | No       | —       | Whether to include the Member object in the response |

<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 or name of the organization"
      },
      "idMembership": {
        "type": "string",
        "description": "The ID of the membership to load"
      },
      "member": {
        "type": "boolean",
        "description": "Whether to include the Member object in the response"
      }
    },
    "required": [
      "PCID",
      "id",
      "idMembership"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_newbillableguests\_idboard

Get Organizations new billable guests

**Parameters:**

| Parameter | Type   | Required | Default | Description                                           |
| --------- | ------ | -------- | ------- | ----------------------------------------------------- |
| `id`      | string | Yes      | —       | The ID or name of the organization                    |
| `idBoard` | string | Yes      | —       | The ID of the board to check for new billable guests. |

<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 or name of the organization"
      },
      "idBoard": {
        "type": "string",
        "description": "The ID of the board to check for new billable guests."
      }
    },
    "required": [
      "PCID",
      "id",
      "idBoard"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_plugindata

Get the pluginData Scoped to Organization

**Parameters:**

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

<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 or name of the organization"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_get\_id\_tags

Get Tags of an Organization

**Parameters:**

| Parameter | Type   | Required | Default | Description                        |
| --------- | ------ | -------- | ------- | ---------------------------------- |
| `id`      | object | Yes      | —       | The ID or name of the Organization |

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

***

## trello\_organizations\_id\_members\_idmember\_all

Remove a Member from an Organization and all Organization Boards

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                       |
| ---------- | ------ | -------- | ------- | ------------------------------------------------- |
| `id`       | string | Yes      | —       | The ID or name of the organization                |
| `idMember` | string | Yes      | —       | The ID of the member to remove from the Workspace |

<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 or name of the organization"
      },
      "idMember": {
        "type": "string",
        "description": "The ID of the member to remove from the Workspace"
      }
    },
    "required": [
      "PCID",
      "id",
      "idMember"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_post\_id\_exports

Create Export for Organizations

**Parameters:**

| Parameter     | Type    | Required | Default | Description                                        |
| ------------- | ------- | -------- | ------- | -------------------------------------------------- |
| `id`          | string  | Yes      | —       | The ID or name of the Workspace                    |
| `attachments` | boolean | No       | —       | Whether the CSV should include attachments 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 or name of the Workspace"
      },
      "attachments": {
        "type": "boolean",
        "description": "Whether the CSV should include attachments or not."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_post\_id\_logo

Update logo for an Organization

**Parameters:**

| Parameter | Type   | Required | Default | Description                     |
| --------- | ------ | -------- | ------- | ------------------------------- |
| `id`      | string | Yes      | —       | The ID or name of the Workspace |
| `file`    | string | No       | —       | Image file for the logo         |

<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 or name of the Workspace"
      },
      "file": {
        "type": "string",
        "description": "Image file for the logo"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_post\_id\_tags

Create a Tag in Organization

**Parameters:**

| Parameter | Type   | Required | Default | Description                        |
| --------- | ------ | -------- | ------- | ---------------------------------- |
| `id`      | object | Yes      | —       | The ID or name of the Organization |

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

***

## trello\_organizations\_post\_organizations

Create a new Organization

**Parameters:**

| Parameter     | Type   | Required | Default | Description                                                                                                                                                                                                                                     |
| ------------- | ------ | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `displayName` | string | Yes      | —       | The name to display for the Organization                                                                                                                                                                                                        |
| `desc`        | string | No       | —       | The description for the organizations                                                                                                                                                                                                           |
| `name`        | string | No       | —       | A string with a length of at least 3. Only lowercase letters, underscores, and numbers are allowed. If the name contains invalid characters, they will be removed. If the name conflicts with an existing name, a new name will be substituted. |
| `website`     | string | No       | —       | A URL starting with `http://` or `https://`                                                                                                                                                                                                     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "displayName": {
        "type": "string",
        "description": "The name to display for the Organization"
      },
      "desc": {
        "type": "string",
        "description": "The description for the organizations"
      },
      "name": {
        "type": "string",
        "description": "A string with a length of at least 3. Only lowercase letters, underscores, and numbers are allowed. If the name contains invalid characters, they will be removed. If the name conflicts with an existing name, a new name will be substituted."
      },
      "website": {
        "type": "string",
        "description": "A URL starting with `http://` or `https://`"
      }
    },
    "required": [
      "PCID",
      "displayName"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_put\_id

Update an Organization

**Parameters:**

| Parameter                               | Type    | Required | Default | Description                                                                                                  |
| --------------------------------------- | ------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------ |
| `id`                                    | string  | Yes      | —       | The ID or name of the Organization                                                                           |
| `name`                                  | string  | No       | —       | A new name for the organization. At least 3 lowercase letters, underscores, and numbers. Must be unique      |
| `displayName`                           | string  | No       | —       | A new displayName for the organization. Must be at least 1 character long and not begin or end with a space. |
| `desc`                                  | string  | No       | —       | A new description for the organization                                                                       |
| `website`                               | string  | No       | —       | A URL starting with `http://`, `https://`, or `null`                                                         |
| `prefs/associatedDomain`                | string  | No       | —       | The Google Apps domain to link this org to.                                                                  |
| `prefs/externalMembersDisabled`         | boolean | No       | —       | Whether non-workspace members can be added to boards inside the Workspace                                    |
| `prefs/googleAppsVersion`               | integer | No       | —       | `1` or `2`                                                                                                   |
| `prefs/boardVisibilityRestrict/org`     | string  | No       | —       | Who on the Workspace can make Workspace visible boards. One of `admin`, `none`, `org`                        |
| `prefs/boardVisibilityRestrict/private` | string  | No       | —       | Who can make private boards. One of: `admin`, `none`, `org`                                                  |
| `prefs/boardVisibilityRestrict/public`  | string  | No       | —       | Who on the Workspace can make public boards. One of: `admin`, `none`, `org`                                  |
| `prefs/orgInviteRestrict`               | string  | No       | —       | An email address with optional wildcard characters. (E.g. `subdomain.*.trello.com`)                          |
| `prefs/permissionLevel`                 | string  | No       | —       | Whether the Workspace page is publicly visible. One of: `private`, `public`                                  |

<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 or name of the Organization"
      },
      "name": {
        "type": "string",
        "description": "A new name for the organization. At least 3 lowercase letters, underscores, and numbers. Must be unique"
      },
      "displayName": {
        "type": "string",
        "description": "A new displayName for the organization. Must be at least 1 character long and not begin or end with a space."
      },
      "desc": {
        "type": "string",
        "description": "A new description for the organization"
      },
      "website": {
        "type": "string",
        "description": "A URL starting with `http://`, `https://`, or `null`"
      },
      "prefs/associatedDomain": {
        "type": "string",
        "description": "The Google Apps domain to link this org to."
      },
      "prefs/externalMembersDisabled": {
        "type": "boolean",
        "description": "Whether non-workspace members can be added to boards inside the Workspace"
      },
      "prefs/googleAppsVersion": {
        "type": "integer",
        "description": "`1` or `2`"
      },
      "prefs/boardVisibilityRestrict/org": {
        "type": "string",
        "description": "Who on the Workspace can make Workspace visible boards. One of `admin`, `none`, `org`"
      },
      "prefs/boardVisibilityRestrict/private": {
        "type": "string",
        "description": "Who can make private boards. One of: `admin`, `none`, `org`"
      },
      "prefs/boardVisibilityRestrict/public": {
        "type": "string",
        "description": "Who on the Workspace can make public boards. One of: `admin`, `none`, `org`"
      },
      "prefs/orgInviteRestrict": {
        "type": "string",
        "description": "An email address with optional wildcard characters. (E.g. `subdomain.*.trello.com`)"
      },
      "prefs/permissionLevel": {
        "type": "string",
        "description": "Whether the Workspace page is publicly visible. One of: `private`, `public`"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_put\_id\_members

Update an Organization's Members

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                                                    |
| ---------- | ------ | -------- | ------- | ------------------------------------------------------------------------------ |
| `id`       | string | Yes      | —       | The ID or name of the organization                                             |
| `email`    | string | Yes      | —       | An email address                                                               |
| `fullName` | string | Yes      | —       | Name for the member, at least 1 character not beginning or ending with a space |
| `type`     | string | No       | —       | One of: `admin`, `normal`                                                      |

<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 or name of the organization"
      },
      "email": {
        "type": "string",
        "description": "An email address"
      },
      "fullName": {
        "type": "string",
        "description": "Name for the member, at least 1 character not beginning or ending with a space"
      },
      "type": {
        "type": "string",
        "description": "One of: `admin`, `normal`",
        "enum": [
          "admin",
          "normal"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "email",
      "fullName"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_put\_id\_members\_idmember

Update a Member of an Organization

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                |
| ---------- | ------ | -------- | ------- | ------------------------------------------ |
| `id`       | string | Yes      | —       | The ID or name of the organization         |
| `idMember` | object | Yes      | —       | The ID or username of the member to update |
| `type`     | string | Yes      | —       | One of: `admin`, `normal`                  |

<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 or name of the organization"
      },
      "idMember": {
        "description": "The ID or username of the member to update"
      },
      "type": {
        "type": "string",
        "description": "One of: `admin`, `normal`",
        "enum": [
          "admin",
          "normal"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "idMember",
      "type"
    ]
  }
  ```
</Expandable>

***

## trello\_organizations\_put\_id\_members\_idmember\_deactivated

Deactivate or reactivate a member of an Organization

**Parameters:**

| Parameter  | Type    | Required | Default | Description                                |
| ---------- | ------- | -------- | ------- | ------------------------------------------ |
| `id`       | string  | Yes      | —       | The ID or name of the organization         |
| `idMember` | object  | Yes      | —       | The ID or username of the member to update |
| `value`    | boolean | Yes      | —       | 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 or name of the organization"
      },
      "idMember": {
        "description": "The ID or username of the member to update"
      },
      "value": {
        "type": "boolean",
        "description": "The value value"
      }
    },
    "required": [
      "PCID",
      "id",
      "idMember",
      "value"
    ]
  }
  ```
</Expandable>
