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

# dropbox-sign-admin

> Dropbox Sign Admin - teams, accounts, API apps, and reports

**Server path:** `/dropbox-sign-admin` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                              | Description           |
| --------------------------------------------------------------------------------- | --------------------- |
| [`dropbox_sign_admin_account_create`](#dropbox_sign_admin_account_create)         | Create Account        |
| [`dropbox_sign_admin_account_get`](#dropbox_sign_admin_account_get)               | Get Account           |
| [`dropbox_sign_admin_account_update`](#dropbox_sign_admin_account_update)         | Update Account        |
| [`dropbox_sign_admin_account_verify`](#dropbox_sign_admin_account_verify)         | Verify Account        |
| [`dropbox_sign_admin_api_app_create`](#dropbox_sign_admin_api_app_create)         | Create API App        |
| [`dropbox_sign_admin_api_app_delete`](#dropbox_sign_admin_api_app_delete)         | Delete API App        |
| [`dropbox_sign_admin_api_app_get`](#dropbox_sign_admin_api_app_get)               | Get API App           |
| [`dropbox_sign_admin_api_app_list`](#dropbox_sign_admin_api_app_list)             | List API Apps         |
| [`dropbox_sign_admin_api_app_update`](#dropbox_sign_admin_api_app_update)         | Update API App        |
| [`dropbox_sign_admin_report_create`](#dropbox_sign_admin_report_create)           | Create Report         |
| [`dropbox_sign_admin_team_add_member`](#dropbox_sign_admin_team_add_member)       | Add User to Team      |
| [`dropbox_sign_admin_team_create`](#dropbox_sign_admin_team_create)               | Create Team           |
| [`dropbox_sign_admin_team_delete`](#dropbox_sign_admin_team_delete)               | Delete Team           |
| [`dropbox_sign_admin_team_get`](#dropbox_sign_admin_team_get)                     | Get Team              |
| [`dropbox_sign_admin_team_info`](#dropbox_sign_admin_team_info)                   | Get Team Info         |
| [`dropbox_sign_admin_team_invites`](#dropbox_sign_admin_team_invites)             | List Team Invites     |
| [`dropbox_sign_admin_team_members`](#dropbox_sign_admin_team_members)             | List Team Members     |
| [`dropbox_sign_admin_team_remove_member`](#dropbox_sign_admin_team_remove_member) | Remove User from Team |
| [`dropbox_sign_admin_team_sub_teams`](#dropbox_sign_admin_team_sub_teams)         | List Sub Teams        |
| [`dropbox_sign_admin_team_update`](#dropbox_sign_admin_team_update)               | Update Team           |

***

## dropbox\_sign\_admin\_account\_create

Create Account

**Parameters:**

| Parameter       | Type   | Required | Default | Description                                                                                                                                                  |
| --------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `client_id`     | string | No       | —       | Used when creating a new account with OAuth authorization.  See [OAuth 2.0 Authorization](https://app.hellosign.com/api/oauthWalkthrough#OAuthAuthorization) |
| `client_secret` | string | No       | —       | Used when creating a new account with OAuth authorization.  See [OAuth 2.0 Authorization](https://app.hellosign.com/api/oauthWalkthrough#OAuthAuthorization) |
| `email_address` | string | Yes      | —       | The email address which will be associated with the new Account.                                                                                             |
| `locale`        | string | No       | —       | The locale used in this Account. Check out the list of supported locales to learn more about the possible values.                                            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "client_id": {
        "type": "string",
        "description": "Used when creating a new account with OAuth authorization.  See [OAuth 2.0 Authorization](https://app.hellosign.com/api/oauthWalkthrough#OAuthAuthorization)"
      },
      "client_secret": {
        "type": "string",
        "description": "Used when creating a new account with OAuth authorization.  See [OAuth 2.0 Authorization](https://app.hellosign.com/api/oauthWalkthrough#OAuthAuthorization)"
      },
      "email_address": {
        "type": "string",
        "description": "The email address which will be associated with the new Account."
      },
      "locale": {
        "type": "string",
        "description": "The locale used in this Account. Check out the list of [supported locales](/api/reference/constants/#supported-locales) to learn more about the possible values."
      }
    },
    "required": [
      "PCID",
      "email_address"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_account\_get

Get Account

**Parameters:**

| Parameter       | Type   | Required | Default | Description                                                                                                                    |
| --------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------ |
| `account_id`    | string | No       | —       | `account_id` or `email_address` is required. If both are provided, the account id prevails.  The ID of the Account.            |
| `email_address` | string | No       | —       | `account_id` or `email_address` is required, If both are provided, the account id prevails.  The email address of the Account. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "account_id": {
        "type": "string",
        "description": "`account_id` or `email_address` is required. If both are provided, the account id prevails.  The ID of the Account."
      },
      "email_address": {
        "type": "string",
        "description": "`account_id` or `email_address` is required, If both are provided, the account id prevails.  The email address of the Account."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_account\_update

Update Account

**Parameters:**

| Parameter      | Type   | Required | Default | Description                                                                                                       |                       |
| -------------- | ------ | -------- | ------- | ----------------------------------------------------------------------------------------------------------------- | --------------------- |
| `account_id`   | string | null     | No      | —                                                                                                                 | The ID of the Account |
| `callback_url` | string | No       | —       | The URL that Dropbox Sign should POST events to.                                                                  |                       |
| `locale`       | string | No       | —       | The locale used in this Account. Check out the list of supported locales to learn more about the possible values. |                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "account_id": {
        "type": [
          "string",
          "null"
        ],
        "description": "The ID of the Account"
      },
      "callback_url": {
        "type": "string",
        "description": "The URL that Dropbox Sign should POST events to."
      },
      "locale": {
        "type": "string",
        "description": "The locale used in this Account. Check out the list of [supported locales](/api/reference/constants/#supported-locales) to learn more about the possible values."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_account\_verify

Verify Account

**Parameters:**

| Parameter       | Type   | Required | Default | Description                                |
| --------------- | ------ | -------- | ------- | ------------------------------------------ |
| `email_address` | string | Yes      | —       | Email address to run the verification for. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email_address": {
        "type": "string",
        "description": "Email address to run the verification for."
      }
    },
    "required": [
      "PCID",
      "email_address"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_api\_app\_create

Create API App

**Parameters:**

| Parameter                | Type      | Required | Default | Description                                                                                                                                                                                                                                                         |
| ------------------------ | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `callback_url`           | string    | No       | —       | The URL at which the ApiApp should receive event callbacks.                                                                                                                                                                                                         |
| `custom_logo_file`       | string    | No       | —       | An image file to use as a custom logo in embedded contexts. (Only applies to some API plans)                                                                                                                                                                        |
| `domains`                | string\[] | Yes      | —       | The domain names the ApiApp will be associated with.                                                                                                                                                                                                                |
| `name`                   | string    | Yes      | —       | The name you want to assign to the ApiApp.                                                                                                                                                                                                                          |
| `oauth`                  | object    | No       | —       | OAuth related parameters.                                                                                                                                                                                                                                           |
| `options`                | object    | No       | —       | Additional options supported by API App.                                                                                                                                                                                                                            |
| `white_labeling_options` | object    | No       | —       | An array of elements and values serialized to a string, to be used to customize the app's signer page. (Only applies to some API plans)  Take a look at our [white labeling guide](https://developers.hellosign.com/api/reference/premium-branding/) to learn more. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "callback_url": {
        "type": "string",
        "description": "The URL at which the ApiApp should receive event callbacks."
      },
      "custom_logo_file": {
        "type": "string",
        "description": "An image file to use as a custom logo in embedded contexts. (Only applies to some API plans)"
      },
      "domains": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "The domain names the ApiApp will be associated with."
      },
      "name": {
        "type": "string",
        "description": "The name you want to assign to the ApiApp."
      },
      "oauth": {
        "type": "object",
        "description": "OAuth related parameters.",
        "properties": {
          "callback_url": {
            "type": "string",
            "description": "The callback URL to be used for OAuth flows. (Required if `oauth[scopes]` is provided)"
          },
          "scopes": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "request_signature",
                "basic_account_info",
                "account_access",
                "signature_request_access",
                "template_access",
                "team_access",
                "api_app_access",
                ""
              ]
            },
            "description": "A list of [OAuth scopes](/api/reference/tag/OAuth) to be granted to the app. (Required if `oauth[callback_url]` is provided)."
          }
        }
      },
      "options": {
        "type": "object",
        "description": "Additional options supported by API App.",
        "properties": {
          "can_insert_everywhere": {
            "type": "boolean",
            "description": "Determines if signers can use \"Insert Everywhere\" when signing a document."
          }
        }
      },
      "white_labeling_options": {
        "type": "object",
        "description": "An array of elements and values serialized to a string, to be used to customize the app's signer page. (Only applies to some API plans)  Take a look at our [white labeling guide](https://developers.hellosign.com/api/reference/premium-branding/) to learn more.",
        "properties": {
          "header_background_color": {
            "type": "string",
            "description": "Header Background Color"
          },
          "legal_version": {
            "type": "string",
            "description": "Legal Version",
            "enum": [
              "terms1",
              "terms2"
            ]
          },
          "link_color": {
            "type": "string",
            "description": "Link Color"
          },
          "page_background_color": {
            "type": "string",
            "description": "Page Background Color"
          },
          "primary_button_color": {
            "type": "string",
            "description": "Primary Button Color"
          },
          "primary_button_color_hover": {
            "type": "string",
            "description": "Primary Button Color Hover"
          },
          "primary_button_text_color": {
            "type": "string",
            "description": "Primary Button Text Color"
          },
          "primary_button_text_color_hover": {
            "type": "string",
            "description": "Primary Button Text Color Hover"
          },
          "secondary_button_color": {
            "type": "string",
            "description": "Secondary Button Color"
          },
          "secondary_button_color_hover": {
            "type": "string",
            "description": "Secondary Button Color Hover"
          },
          "secondary_button_text_color": {
            "type": "string",
            "description": "Secondary Button Text Color"
          },
          "secondary_button_text_color_hover": {
            "type": "string",
            "description": "Secondary Button Text Color Hover"
          },
          "text_color1": {
            "type": "string",
            "description": "Text Color1"
          },
          "text_color2": {
            "type": "string",
            "description": "Text Color2"
          },
          "reset_to_default": {
            "type": "boolean",
            "description": "Resets white labeling options to defaults. Only useful when updating an API App."
          }
        }
      }
    },
    "required": [
      "PCID",
      "domains",
      "name"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_api\_app\_delete

Delete API App

**Parameters:**

| Parameter   | Type   | Required | Default | Description                             |
| ----------- | ------ | -------- | ------- | --------------------------------------- |
| `client_id` | string | Yes      | —       | The client id of the API App to delete. |

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

***

## dropbox\_sign\_admin\_api\_app\_get

Get API App

**Parameters:**

| Parameter   | Type   | Required | Default | Description                               |
| ----------- | ------ | -------- | ------- | ----------------------------------------- |
| `client_id` | string | Yes      | —       | The client id of the API App to retrieve. |

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

***

## dropbox\_sign\_admin\_api\_app\_list

List API Apps

**Parameters:**

| Parameter   | Type    | Required | Default | Description                                                                                |
| ----------- | ------- | -------- | ------- | ------------------------------------------------------------------------------------------ |
| `page`      | integer | No       | —       | Which page number of the API App List to return. Defaults to `1`.                          |
| `page_size` | integer | No       | —       | Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "page": {
        "type": "integer",
        "description": "Which page number of the API App List to return. Defaults to `1`."
      },
      "page_size": {
        "type": "integer",
        "description": "Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_api\_app\_update

Update API App

**Parameters:**

| Parameter                | Type      | Required | Default | Description                                                                                                                                                                                                                                                         |
| ------------------------ | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `client_id`              | string    | Yes      | —       | The client id of the API App to update.                                                                                                                                                                                                                             |
| `callback_url`           | string    | No       | —       | The URL at which the API App should receive event callbacks.                                                                                                                                                                                                        |
| `custom_logo_file`       | string    | No       | —       | An image file to use as a custom logo in embedded contexts. (Only applies to some API plans)                                                                                                                                                                        |
| `domains`                | string\[] | No       | —       | The domain names the ApiApp will be associated with.                                                                                                                                                                                                                |
| `name`                   | string    | No       | —       | The name you want to assign to the ApiApp.                                                                                                                                                                                                                          |
| `oauth`                  | object    | No       | —       | OAuth related parameters.                                                                                                                                                                                                                                           |
| `options`                | object    | No       | —       | Additional options supported by API App.                                                                                                                                                                                                                            |
| `white_labeling_options` | object    | No       | —       | An array of elements and values serialized to a string, to be used to customize the app's signer page. (Only applies to some API plans)  Take a look at our [white labeling guide](https://developers.hellosign.com/api/reference/premium-branding/) to learn more. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "client_id": {
        "type": "string",
        "description": "The client id of the API App to update."
      },
      "callback_url": {
        "type": "string",
        "description": "The URL at which the API App should receive event callbacks."
      },
      "custom_logo_file": {
        "type": "string",
        "description": "An image file to use as a custom logo in embedded contexts. (Only applies to some API plans)"
      },
      "domains": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "The domain names the ApiApp will be associated with."
      },
      "name": {
        "type": "string",
        "description": "The name you want to assign to the ApiApp."
      },
      "oauth": {
        "type": "object",
        "description": "OAuth related parameters.",
        "properties": {
          "callback_url": {
            "type": "string",
            "description": "The callback URL to be used for OAuth flows. (Required if `oauth[scopes]` is provided)"
          },
          "scopes": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "request_signature",
                "basic_account_info",
                "account_access",
                "signature_request_access",
                "template_access",
                "team_access",
                "api_app_access",
                ""
              ]
            },
            "description": "A list of [OAuth scopes](/api/reference/tag/OAuth) to be granted to the app. (Required if `oauth[callback_url]` is provided)."
          }
        }
      },
      "options": {
        "type": "object",
        "description": "Additional options supported by API App.",
        "properties": {
          "can_insert_everywhere": {
            "type": "boolean",
            "description": "Determines if signers can use \"Insert Everywhere\" when signing a document."
          }
        }
      },
      "white_labeling_options": {
        "type": "object",
        "description": "An array of elements and values serialized to a string, to be used to customize the app's signer page. (Only applies to some API plans)  Take a look at our [white labeling guide](https://developers.hellosign.com/api/reference/premium-branding/) to learn more.",
        "properties": {
          "header_background_color": {
            "type": "string",
            "description": "Header Background Color"
          },
          "legal_version": {
            "type": "string",
            "description": "Legal Version",
            "enum": [
              "terms1",
              "terms2"
            ]
          },
          "link_color": {
            "type": "string",
            "description": "Link Color"
          },
          "page_background_color": {
            "type": "string",
            "description": "Page Background Color"
          },
          "primary_button_color": {
            "type": "string",
            "description": "Primary Button Color"
          },
          "primary_button_color_hover": {
            "type": "string",
            "description": "Primary Button Color Hover"
          },
          "primary_button_text_color": {
            "type": "string",
            "description": "Primary Button Text Color"
          },
          "primary_button_text_color_hover": {
            "type": "string",
            "description": "Primary Button Text Color Hover"
          },
          "secondary_button_color": {
            "type": "string",
            "description": "Secondary Button Color"
          },
          "secondary_button_color_hover": {
            "type": "string",
            "description": "Secondary Button Color Hover"
          },
          "secondary_button_text_color": {
            "type": "string",
            "description": "Secondary Button Text Color"
          },
          "secondary_button_text_color_hover": {
            "type": "string",
            "description": "Secondary Button Text Color Hover"
          },
          "text_color1": {
            "type": "string",
            "description": "Text Color1"
          },
          "text_color2": {
            "type": "string",
            "description": "Text Color2"
          },
          "reset_to_default": {
            "type": "boolean",
            "description": "Resets white labeling options to defaults. Only useful when updating an API App."
          }
        }
      }
    },
    "required": [
      "PCID",
      "client_id"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_report\_create

Create Report

**Parameters:**

| Parameter     | Type      | Required | Default | Description                                                                                                                                                                                                                                                                                                                     |
| ------------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `end_date`    | string    | Yes      | —       | The (inclusive) end date for the report data in `MM/DD/YYYY` format.                                                                                                                                                                                                                                                            |
| `report_type` | string\[] | Yes      | —       | The type(s) of the report you are requesting. Allowed values are `user_activity` and `document_status`. User activity reports contain list of all users and their activity during the specified date range. Document status report contain a list of signature requests created in the specified time range (and their status). |
| `start_date`  | string    | Yes      | —       | The (inclusive) start date for the report data in `MM/DD/YYYY` format.                                                                                                                                                                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "end_date": {
        "type": "string",
        "description": "The (inclusive) end date for the report data in `MM/DD/YYYY` format."
      },
      "report_type": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "user_activity",
            "document_status",
            "sms_activity",
            "fax_usage"
          ]
        },
        "description": "The type(s) of the report you are requesting. Allowed values are `user_activity` and `document_status`. User activity reports contain list of all users and their activity during the specified date range. Document status report contain a list of signature requests created in the specified time range (and their status)."
      },
      "start_date": {
        "type": "string",
        "description": "The (inclusive) start date for the report data in `MM/DD/YYYY` format."
      }
    },
    "required": [
      "PCID",
      "end_date",
      "report_type",
      "start_date"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_team\_add\_member

Add User to Team

**Parameters:**

| Parameter       | Type   | Required | Default | Description                                                                                                                                    |
| --------------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `team_id`       | string | No       | —       | The id of the team.                                                                                                                            |
| `account_id`    | string | No       | —       | `account_id` or `email_address` is required. If both are provided, the account id prevails.  Account id of the user to invite to your Team.    |
| `email_address` | string | No       | —       | `account_id` or `email_address` is required, If both are provided, the account id prevails.  Email address of the user to invite to your Team. |
| `role`          | string | No       | —       | A role member will take in a new Team.  **NOTE:** This parameter is used only if `team_id` is provided.                                        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "team_id": {
        "type": "string",
        "description": "The id of the team."
      },
      "account_id": {
        "type": "string",
        "description": "`account_id` or `email_address` is required. If both are provided, the account id prevails.  Account id of the user to invite to your Team."
      },
      "email_address": {
        "type": "string",
        "description": "`account_id` or `email_address` is required, If both are provided, the account id prevails.  Email address of the user to invite to your Team."
      },
      "role": {
        "type": "string",
        "description": "A role member will take in a new Team.  **NOTE:** This parameter is used only if `team_id` is provided.",
        "enum": [
          "Member",
          "Developer",
          "Team Manager",
          "Admin"
        ]
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_team\_create

Create Team

**Parameters:**

| Parameter | Type   | Required | Default | Description            |
| --------- | ------ | -------- | ------- | ---------------------- |
| `name`    | string | No       | —       | The name of your Team. |

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

***

## dropbox\_sign\_admin\_team\_delete

Delete Team

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

***

## dropbox\_sign\_admin\_team\_get

Get Team

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

***

## dropbox\_sign\_admin\_team\_info

Get Team Info

**Parameters:**

| Parameter | Type   | Required | Default | Description         |
| --------- | ------ | -------- | ------- | ------------------- |
| `team_id` | string | No       | —       | The id of the team. |

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

***

## dropbox\_sign\_admin\_team\_invites

List Team Invites

**Parameters:**

| Parameter       | Type   | Required | Default | Description                                              |
| --------------- | ------ | -------- | ------- | -------------------------------------------------------- |
| `email_address` | string | No       | —       | The email address for which to display the team invites. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email_address": {
        "type": "string",
        "description": "The email address for which to display the team invites."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_team\_members

List Team Members

**Parameters:**

| Parameter   | Type    | Required | Default | Description                                                                                |
| ----------- | ------- | -------- | ------- | ------------------------------------------------------------------------------------------ |
| `team_id`   | string  | Yes      | —       | The id of the team that a member list is being requested from.                             |
| `page`      | integer | No       | —       | Which page number of the team member list to return. Defaults to `1`.                      |
| `page_size` | integer | No       | —       | Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "team_id": {
        "type": "string",
        "description": "The id of the team that a member list is being requested from."
      },
      "page": {
        "type": "integer",
        "description": "Which page number of the team member list to return. Defaults to `1`."
      },
      "page_size": {
        "type": "integer",
        "description": "Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`."
      }
    },
    "required": [
      "PCID",
      "team_id"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_team\_remove\_member

Remove User from Team

**Parameters:**

| Parameter                 | Type   | Required | Default | Description                                                                                                                                                                                                                                                                          |
| ------------------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `account_id`              | string | No       | —       | **account\_id** or **email\_address** is required. If both are provided, the account id prevails.  Account id to remove from your Team.                                                                                                                                              |
| `email_address`           | string | No       | —       | **account\_id** or **email\_address** is required. If both are provided, the account id prevails.  Email address of the Account to remove from your Team.                                                                                                                            |
| `new_owner_email_address` | string | No       | —       | The email address of an Account on this Team to receive all documents, templates, and API apps (if applicable) from the removed Account. If not provided, and on an Enterprise plan, this data will remain with the removed Account.  **NOTE:** Only available for Enterprise plans. |
| `new_role`                | string | No       | —       | A new role member will take in a new Team.  **NOTE:** This parameter is used only if `new_team_id` is provided.                                                                                                                                                                      |
| `new_team_id`             | string | No       | —       | Id of the new Team.                                                                                                                                                                                                                                                                  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "account_id": {
        "type": "string",
        "description": "**account_id** or **email_address** is required. If both are provided, the account id prevails.  Account id to remove from your Team."
      },
      "email_address": {
        "type": "string",
        "description": "**account_id** or **email_address** is required. If both are provided, the account id prevails.  Email address of the Account to remove from your Team."
      },
      "new_owner_email_address": {
        "type": "string",
        "description": "The email address of an Account on this Team to receive all documents, templates, and API apps (if applicable) from the removed Account. If not provided, and on an Enterprise plan, this data will remain with the removed Account.  **NOTE:** Only available for Enterprise plans."
      },
      "new_role": {
        "type": "string",
        "description": "A new role member will take in a new Team.  **NOTE:** This parameter is used only if `new_team_id` is provided.",
        "enum": [
          "Member",
          "Developer",
          "Team Manager",
          "Admin"
        ]
      },
      "new_team_id": {
        "type": "string",
        "description": "Id of the new Team."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_team\_sub\_teams

List Sub Teams

**Parameters:**

| Parameter   | Type    | Required | Default | Description                                                                                |
| ----------- | ------- | -------- | ------- | ------------------------------------------------------------------------------------------ |
| `team_id`   | string  | Yes      | —       | The id of the parent Team.                                                                 |
| `page`      | integer | No       | —       | Which page number of the SubTeam List to return. Defaults to `1`.                          |
| `page_size` | integer | No       | —       | Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "team_id": {
        "type": "string",
        "description": "The id of the parent Team."
      },
      "page": {
        "type": "integer",
        "description": "Which page number of the SubTeam List to return. Defaults to `1`."
      },
      "page_size": {
        "type": "integer",
        "description": "Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`."
      }
    },
    "required": [
      "PCID",
      "team_id"
    ]
  }
  ```
</Expandable>

***

## dropbox\_sign\_admin\_team\_update

Update Team

**Parameters:**

| Parameter | Type   | Required | Default | Description            |
| --------- | ------ | -------- | ------- | ---------------------- |
| `name`    | string | No       | —       | The name of your Team. |

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