{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dropbox-business",
    "name": "Dropbox Business",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/dropbox-business",
    "canonicalUrl": "https://clawhub.ai/byungkyu/dropbox-business",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/dropbox-business",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dropbox-business",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dropbox-business"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/dropbox-business",
    "agentPageUrl": "https://openagent3.xyz/skills/dropbox-business/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dropbox-business/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dropbox-business/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Dropbox Business",
        "body": "Access the Dropbox Business API with managed OAuth authentication. Manage team administration including members, groups, team folders, devices, linked apps, and audit logs."
      },
      {
        "title": "Quick Start",
        "body": "# Get team info\npython3 <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/team/get_info', data=b'null', method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/dropbox-business/2/{endpoint-path}\n\nReplace {endpoint-path} with the actual Dropbox Business API endpoint path. The gateway proxies requests to api.dropboxapi.com and automatically injects your OAuth token.\n\nIMPORTANT: Dropbox Business API uses POST for almost all endpoints, including read operations. Request bodies should be JSON (use null for endpoints with no parameters)."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Dropbox Business OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python3 <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=dropbox-business&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python3 <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'dropbox-business'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection_id\": \"09062f57-98a9-49f2-9e63-b2a7e03a9d7a\",\n  \"status\": \"PENDING\",\n  \"url\": \"https://connect.maton.ai/?session_token=...\",\n  \"app\": \"dropbox-business\"\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python3 <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nurllib.request.urlopen(req)\nprint(\"Deleted\")\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Dropbox Business connections, specify which one to use with the Maton-Connection header:\n\nreq.add_header('Maton-Connection', '{connection_id}')\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Team Information",
        "body": "Get Team Info\n\nRetrieves information about the team including license usage and policies.\n\nPOST /dropbox-business/2/team/get_info\nContent-Type: application/json\n\nnull\n\nResponse:\n\n{\n  \"name\": \"My Company\",\n  \"team_id\": \"dbtid:AAC...\",\n  \"num_licensed_users\": 10,\n  \"num_provisioned_users\": 5,\n  \"num_used_licenses\": 5,\n  \"policies\": {\n    \"sharing\": {...},\n    \"emm_state\": {\".tag\": \"disabled\"},\n    \"office_addin\": {\".tag\": \"enabled\"}\n  }\n}\n\nGet Team Features\n\nQuery team feature availability.\n\nPOST /dropbox-business/2/team/features/get_values\nContent-Type: application/json\n\n{\n  \"features\": [\n    {\".tag\": \"upload_api_rate_limit\"},\n    {\".tag\": \"has_team_shared_dropbox\"},\n    {\".tag\": \"has_team_file_events\"},\n    {\".tag\": \"has_team_selective_sync\"}\n  ]\n}\n\nResponse:\n\n{\n  \"values\": [\n    {\".tag\": \"upload_api_rate_limit\", \"upload_api_rate_limit\": {\".tag\": \"limit\", \"limit\": 1000000000}},\n    {\".tag\": \"has_team_shared_dropbox\", \"has_team_shared_dropbox\": {\".tag\": \"has_team_shared_dropbox\", \"has_team_shared_dropbox\": false}},\n    {\".tag\": \"has_team_file_events\", \"has_team_file_events\": {\".tag\": \"enabled\", \"enabled\": true}},\n    {\".tag\": \"has_team_selective_sync\", \"has_team_selective_sync\": {\".tag\": \"has_team_selective_sync\", \"has_team_selective_sync\": true}}\n  ]\n}\n\nGet Authenticated Admin\n\nGet info about the currently authenticated admin.\n\nPOST /dropbox-business/2/team/token/get_authenticated_admin\nContent-Type: application/json\n\nnull\n\nResponse:\n\n{\n  \"admin_profile\": {\n    \"team_member_id\": \"dbmid:AAA...\",\n    \"account_id\": \"dbid:AAC...\",\n    \"email\": \"admin@company.com\",\n    \"email_verified\": true,\n    \"status\": {\".tag\": \"active\"},\n    \"name\": {\"given_name\": \"Admin\", \"surname\": \"User\", \"display_name\": \"Admin User\"},\n    \"membership_type\": {\".tag\": \"full\"},\n    \"joined_on\": \"2026-02-15T08:27:35Z\"\n  }\n}"
      },
      {
        "title": "Team Members",
        "body": "List Members\n\nPOST /dropbox-business/2/team/members/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\nList Members (V2)\n\nReturns members with roles information (recommended).\n\nPOST /dropbox-business/2/team/members/list_v2\nContent-Type: application/json\n\n{\n  \"limit\": 100,\n  \"include_removed\": false\n}\n\nResponse:\n\n{\n  \"members\": [\n    {\n      \"profile\": {\n        \"team_member_id\": \"dbmid:AAA...\",\n        \"account_id\": \"dbid:AAC...\",\n        \"email\": \"user@company.com\",\n        \"email_verified\": true,\n        \"secondary_emails\": [],\n        \"status\": {\".tag\": \"active\"},\n        \"name\": {\n          \"given_name\": \"John\",\n          \"surname\": \"Doe\",\n          \"familiar_name\": \"John\",\n          \"display_name\": \"John Doe\",\n          \"abbreviated_name\": \"JD\"\n        },\n        \"membership_type\": {\".tag\": \"full\"},\n        \"joined_on\": \"2026-01-15T10:00:00Z\",\n        \"groups\": [\"g:1d31f47b...\"],\n        \"member_folder_id\": \"13646219987\",\n        \"root_folder_id\": \"13650024947\"\n      },\n      \"roles\": [\n        {\n          \"role_id\": \"pid_dbtmr:...\",\n          \"name\": \"Team\",\n          \"description\": \"Manage everything and access all permissions\"\n        }\n      ]\n    }\n  ],\n  \"cursor\": \"AAQ...\",\n  \"has_more\": false\n}\n\nContinue Listing Members\n\nPOST /dropbox-business/2/team/members/list/continue\nContent-Type: application/json\n\n{\n  \"cursor\": \"AAQ...\"\n}\n\nGet Member Info\n\nPOST /dropbox-business/2/team/members/get_info\nContent-Type: application/json\n\n{\n  \"members\": [{\".tag\": \"email\", \"email\": \"user@company.com\"}]\n}\n\nGet Member Info (V2)\n\nReturns member with roles information (recommended).\n\nPOST /dropbox-business/2/team/members/get_info_v2\nContent-Type: application/json\n\n{\n  \"members\": [{\".tag\": \"email\", \"email\": \"user@company.com\"}]\n}\n\nResponse:\n\n{\n  \"members_info\": [\n    {\n      \".tag\": \"member_info\",\n      \"profile\": {\n        \"team_member_id\": \"dbmid:AAA...\",\n        \"email\": \"user@company.com\",\n        \"secondary_emails\": [],\n        \"status\": {\".tag\": \"active\"},\n        \"name\": {...},\n        \"groups\": [\"g:...\"]\n      },\n      \"roles\": [\n        {\"role_id\": \"...\", \"name\": \"Team\", \"description\": \"...\"}\n      ]\n    }\n  ]\n}\n\nMember Selectors:\n\n{\".tag\": \"email\", \"email\": \"user@company.com\"}\n{\".tag\": \"team_member_id\", \"team_member_id\": \"dbmid:AAA...\"}\n{\".tag\": \"external_id\", \"external_id\": \"...\"}\n\nAdd Member\n\nPOST /dropbox-business/2/team/members/add\nContent-Type: application/json\n\n{\n  \"new_members\": [\n    {\n      \"member_email\": \"newuser@company.com\",\n      \"member_given_name\": \"Jane\",\n      \"member_surname\": \"Smith\",\n      \"send_welcome_email\": true,\n      \"role\": {\".tag\": \"member_only\"}\n    }\n  ]\n}\n\nSuspend Member\n\nPOST /dropbox-business/2/team/members/suspend\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n  \"wipe_data\": false\n}\n\nUnsuspend Member\n\nPOST /dropbox-business/2/team/members/unsuspend\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"}\n}\n\nRemove Member\n\nPOST /dropbox-business/2/team/members/remove\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n  \"wipe_data\": true,\n  \"transfer_dest_id\": {\".tag\": \"email\", \"email\": \"admin@company.com\"},\n  \"transfer_admin_id\": {\".tag\": \"email\", \"email\": \"admin@company.com\"},\n  \"keep_account\": false\n}\n\nCheck Remove Job Status\n\nPOST /dropbox-business/2/team/members/remove/job_status/get\nContent-Type: application/json\n\n{\n  \"async_job_id\": \"dbjid:...\"\n}\n\nSend Welcome Email\n\nSend or resend welcome email to pending members.\n\nPOST /dropbox-business/2/team/members/send_welcome_email\nContent-Type: application/json\n\n{\".tag\": \"email\", \"email\": \"pending@company.com\"}\n\nSet Member Profile (V2)\n\nUpdate member profile information.\n\nPOST /dropbox-business/2/team/members/set_profile_v2\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"team_member_id\", \"team_member_id\": \"dbmid:AAA...\"},\n  \"new_given_name\": \"John\",\n  \"new_surname\": \"Smith\",\n  \"new_external_id\": \"emp-123\"\n}\n\nDelete Profile Photo (V2)\n\nPOST /dropbox-business/2/team/members/delete_profile_photo_v2\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"team_member_id\", \"team_member_id\": \"dbmid:AAA...\"}\n}\n\nSet Profile Photo (V2)\n\nPOST /dropbox-business/2/team/members/set_profile_photo_v2\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"team_member_id\", \"team_member_id\": \"dbmid:AAA...\"},\n  \"photo\": {\".tag\": \"base64_data\", \"base64_data\": \"<base64-encoded-image>\"}\n}\n\nSet Admin Permissions (V2)\n\nChange a member's admin role.\n\nPOST /dropbox-business/2/team/members/set_admin_permissions_v2\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n  \"new_roles\": [\"pid_dbtmr:...\"]\n}"
      },
      {
        "title": "Secondary Emails",
        "body": "Add Secondary Emails\n\nPOST /dropbox-business/2/team/members/secondary_emails/add\nContent-Type: application/json\n\n{\n  \"new_secondary_emails\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"secondary_emails\": [\"alias@company.com\"]\n    }\n  ]\n}\n\nDelete Secondary Emails\n\nPOST /dropbox-business/2/team/members/secondary_emails/delete\nContent-Type: application/json\n\n{\n  \"emails_to_delete\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"secondary_emails\": [\"alias@company.com\"]\n    }\n  ]\n}\n\nResend Verification Emails\n\nPOST /dropbox-business/2/team/members/secondary_emails/resend_verification_emails\nContent-Type: application/json\n\n{\n  \"emails_to_resend\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"secondary_emails\": [\"alias@company.com\"]\n    }\n  ]\n}"
      },
      {
        "title": "Groups",
        "body": "List Groups\n\nPOST /dropbox-business/2/team/groups/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\nResponse:\n\n{\n  \"groups\": [\n    {\n      \"group_name\": \"Engineering\",\n      \"group_id\": \"g:1d31f47b...\",\n      \"member_count\": 5,\n      \"group_management_type\": {\".tag\": \"company_managed\"}\n    }\n  ],\n  \"cursor\": \"AAZ...\",\n  \"has_more\": false\n}\n\nGet Group Info\n\nPOST /dropbox-business/2/team/groups/get_info\nContent-Type: application/json\n\n{\n  \".tag\": \"group_ids\",\n  \"group_ids\": [\"g:1d31f47b...\"]\n}\n\nCreate Group\n\nPOST /dropbox-business/2/team/groups/create\nContent-Type: application/json\n\n{\n  \"group_name\": \"Marketing Team\",\n  \"group_management_type\": {\".tag\": \"company_managed\"}\n}\n\nAdd Members to Group\n\nPOST /dropbox-business/2/team/groups/members/add\nContent-Type: application/json\n\n{\n  \"group\": {\".tag\": \"group_id\", \"group_id\": \"g:1d31f47b...\"},\n  \"members\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"access_type\": {\".tag\": \"member\"}\n    }\n  ],\n  \"return_members\": true\n}\n\nRemove Members from Group\n\nPOST /dropbox-business/2/team/groups/members/remove\nContent-Type: application/json\n\n{\n  \"group\": {\".tag\": \"group_id\", \"group_id\": \"g:1d31f47b...\"},\n  \"users\": [{\".tag\": \"email\", \"email\": \"user@company.com\"}],\n  \"return_members\": true\n}\n\nList Group Members\n\nPOST /dropbox-business/2/team/groups/members/list\nContent-Type: application/json\n\n{\n  \"group\": {\".tag\": \"group_id\", \"group_id\": \"g:1d31f47b...\"},\n  \"limit\": 100\n}\n\nResponse:\n\n{\n  \"members\": [\n    {\n      \"profile\": {\n        \"team_member_id\": \"dbmid:AAA...\",\n        \"email\": \"user@company.com\",\n        \"status\": {\".tag\": \"active\"},\n        \"name\": {...}\n      },\n      \"access_type\": {\".tag\": \"member\"}\n    }\n  ],\n  \"cursor\": \"...\",\n  \"has_more\": false\n}\n\nUpdate Group\n\nPOST /dropbox-business/2/team/groups/update\nContent-Type: application/json\n\n{\n  \"group\": {\".tag\": \"group_id\", \"group_id\": \"g:1d31f47b...\"},\n  \"new_group_name\": \"Updated Name\",\n  \"new_group_external_id\": \"ext-123\"\n}\n\nNote: System-managed groups (like \"Everyone at...\") cannot be updated.\n\nDelete Group\n\nPOST /dropbox-business/2/team/groups/delete\nContent-Type: application/json\n\n{\n  \".tag\": \"group_id\",\n  \"group_id\": \"g:1d31f47b...\"\n}\n\nCheck Group Job Status\n\nFor async group operations.\n\nPOST /dropbox-business/2/team/groups/job_status/get\nContent-Type: application/json\n\n{\n  \"async_job_id\": \"dbjid:...\"\n}"
      },
      {
        "title": "Team Folders",
        "body": "List Team Folders\n\nPOST /dropbox-business/2/team/team_folder/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\nResponse:\n\n{\n  \"team_folders\": [\n    {\n      \"team_folder_id\": \"13646676387\",\n      \"name\": \"Company Documents\",\n      \"status\": {\".tag\": \"active\"},\n      \"is_team_shared_dropbox\": false,\n      \"sync_setting\": {\".tag\": \"default\"}\n    }\n  ],\n  \"cursor\": \"AAb...\",\n  \"has_more\": false\n}\n\nGet Team Folder Info\n\nPOST /dropbox-business/2/team/team_folder/get_info\nContent-Type: application/json\n\n{\n  \"team_folder_ids\": [\"13646676387\"]\n}\n\nCreate Team Folder\n\nPOST /dropbox-business/2/team/team_folder/create\nContent-Type: application/json\n\n{\n  \"name\": \"New Team Folder\",\n  \"sync_setting\": {\".tag\": \"default\"}\n}\n\nRename Team Folder\n\nPOST /dropbox-business/2/team/team_folder/rename\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\",\n  \"name\": \"Renamed Folder\"\n}\n\nArchive Team Folder\n\nPOST /dropbox-business/2/team/team_folder/archive\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\",\n  \"force_async_off\": false\n}\n\nPermanently Delete Team Folder\n\nPOST /dropbox-business/2/team/team_folder/permanently_delete\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\"\n}\n\nActivate Team Folder\n\nActivate an archived team folder.\n\nPOST /dropbox-business/2/team/team_folder/activate\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\"\n}\n\nUpdate Sync Settings\n\nPOST /dropbox-business/2/team/team_folder/update_sync_settings\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\",\n  \"sync_setting\": {\".tag\": \"default\"}\n}\n\nResponse:\n\n{\n  \"team_folder_id\": \"13646676387\",\n  \"name\": \"Team Folder\",\n  \"status\": {\".tag\": \"active\"},\n  \"is_team_shared_dropbox\": false,\n  \"sync_setting\": {\".tag\": \"default\"},\n  \"content_sync_settings\": []\n}"
      },
      {
        "title": "Namespaces",
        "body": "List Namespaces\n\nPOST /dropbox-business/2/team/namespaces/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\nResponse:\n\n{\n  \"namespaces\": [\n    {\n      \"name\": \"Team Folder\",\n      \"namespace_id\": \"13646676387\",\n      \"namespace_type\": {\".tag\": \"team_folder\"}\n    },\n    {\n      \"name\": \"Root\",\n      \"namespace_id\": \"13646219987\",\n      \"namespace_type\": {\".tag\": \"team_member_folder\"},\n      \"team_member_id\": \"dbmid:AAA...\"\n    }\n  ],\n  \"cursor\": \"AAY...\",\n  \"has_more\": false\n}"
      },
      {
        "title": "Devices",
        "body": "List All Members' Devices\n\nPOST /dropbox-business/2/team/devices/list_members_devices\nContent-Type: application/json\n\n{}\n\nResponse:\n\n{\n  \"devices\": [\n    {\n      \"team_member_id\": \"dbmid:AAA...\",\n      \"web_sessions\": [\n        {\n          \"session_id\": \"dbwsid:...\",\n          \"ip_address\": \"192.168.1.1\",\n          \"country\": \"United States\",\n          \"created\": \"2026-02-15T08:26:33Z\",\n          \"user_agent\": \"Mozilla/5.0...\",\n          \"os\": \"Mac OS X\",\n          \"browser\": \"Chrome\"\n        }\n      ],\n      \"desktop_clients\": [],\n      \"mobile_clients\": []\n    }\n  ],\n  \"has_more\": false\n}\n\nList Member Devices\n\nPOST /dropbox-business/2/team/devices/list_member_devices\nContent-Type: application/json\n\n{\n  \"team_member_id\": \"dbmid:AAA...\"\n}\n\nRevoke Device Session\n\nPOST /dropbox-business/2/team/devices/revoke_device_session\nContent-Type: application/json\n\n{\n  \".tag\": \"web_session\",\n  \"session_id\": \"dbwsid:...\",\n  \"team_member_id\": \"dbmid:AAA...\"\n}\n\nRevoke Device Sessions (Batch)\n\nPOST /dropbox-business/2/team/devices/revoke_device_session_batch\nContent-Type: application/json\n\n{\n  \"revoke_devices\": [\n    {\".tag\": \"web_session\", \"session_id\": \"dbwsid:...\", \"team_member_id\": \"dbmid:AAA...\"}\n  ]\n}"
      },
      {
        "title": "Linked Apps",
        "body": "List Members' Linked Apps\n\nPOST /dropbox-business/2/team/linked_apps/list_members_linked_apps\nContent-Type: application/json\n\n{}\n\nResponse:\n\n{\n  \"apps\": [\n    {\n      \"team_member_id\": \"dbmid:AAA...\",\n      \"linked_api_apps\": [\n        {\n          \"app_id\": \"...\",\n          \"app_name\": \"Third Party App\",\n          \"linked\": \"2026-01-15T10:00:00Z\"\n        }\n      ]\n    }\n  ],\n  \"has_more\": false\n}\n\nList All Team Linked Apps\n\nPOST /dropbox-business/2/team/linked_apps/list_team_linked_apps\nContent-Type: application/json\n\n{}\n\nRevoke Linked App\n\nPOST /dropbox-business/2/team/linked_apps/revoke_linked_app\nContent-Type: application/json\n\n{\n  \"app_id\": \"...\",\n  \"team_member_id\": \"dbmid:AAA...\"\n}"
      },
      {
        "title": "Member Space Limits",
        "body": "Get Custom Quotas\n\nPOST /dropbox-business/2/team/member_space_limits/get_custom_quota\nContent-Type: application/json\n\n{\n  \"users\": [{\".tag\": \"email\", \"email\": \"user@company.com\"}]\n}\n\nSet Custom Quotas\n\nPOST /dropbox-business/2/team/member_space_limits/set_custom_quota\nContent-Type: application/json\n\n{\n  \"users_and_quotas\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"quota_gb\": 100\n    }\n  ]\n}\n\nList Excluded Users\n\nList users excluded from automatic backup.\n\nPOST /dropbox-business/2/team/member_space_limits/excluded_users/list\nContent-Type: application/json\n\n{}"
      },
      {
        "title": "Sharing Allowlist",
        "body": "List Sharing Allowlist\n\nPOST /dropbox-business/2/team/sharing_allowlist/list\nContent-Type: application/json\n\n{}\n\nResponse:\n\n{\n  \"domains\": [],\n  \"emails\": [],\n  \"cursor\": \"...\",\n  \"has_more\": false\n}\n\nAdd to Sharing Allowlist\n\nPOST /dropbox-business/2/team/sharing_allowlist/add\nContent-Type: application/json\n\n{\n  \"domains\": [\"partner.com\"],\n  \"emails\": [\"external@client.com\"]\n}\n\nContinue Listing Allowlist\n\nPOST /dropbox-business/2/team/sharing_allowlist/list/continue\nContent-Type: application/json\n\n{\n  \"cursor\": \"...\"\n}"
      },
      {
        "title": "Audit Log (Team Log)",
        "body": "Get Events\n\nPOST /dropbox-business/2/team_log/get_events\nContent-Type: application/json\n\n{\n  \"limit\": 100,\n  \"category\": {\".tag\": \"members\"}\n}\n\nResponse:\n\n{\n  \"events\": [\n    {\n      \"timestamp\": \"2026-02-15T08:27:36Z\",\n      \"event_category\": {\".tag\": \"members\"},\n      \"actor\": {\n        \".tag\": \"admin\",\n        \"admin\": {\n          \"account_id\": \"dbid:AAC...\",\n          \"display_name\": \"Admin User\",\n          \"email\": \"admin@company.com\"\n        }\n      },\n      \"event_type\": {\n        \".tag\": \"member_add_name\",\n        \"description\": \"Added team member name\"\n      },\n      \"details\": {...}\n    }\n  ],\n  \"cursor\": \"...\",\n  \"has_more\": false\n}\n\nEvent Categories:\n\napps - Third-party app events\ncomments - Comment events\ndevices - Device events\ndomains - Domain events\nfile_operations - File and folder events\nfile_requests - File request events\ngroups - Group events\nlogins - Login events\nmembers - Member events\npaper - Paper events\npasswords - Password events\nreports - Report events\nsharing - Sharing events\nshowcase - Showcase events\nsso - SSO events\nteam_folders - Team folder events\nteam_policies - Policy events\nteam_profile - Team profile events\ntfa - Two-factor auth events\n\nContinue Getting Events\n\nPOST /dropbox-business/2/team_log/get_events/continue\nContent-Type: application/json\n\n{\n  \"cursor\": \"...\"\n}"
      },
      {
        "title": "Member File Access",
        "body": "To access files on behalf of a team member, use the Dropbox-API-Select-User header with the member's team_member_id. This allows admin applications to access member files, shared folders, and file requests."
      },
      {
        "title": "List Member's Files",
        "body": "python3 <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\"path\": \"\"}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/files/list_folder', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nreq.add_header('Dropbox-API-Select-User', 'dbmid:AAA...')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "List Member's Shared Folders",
        "body": "python3 <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/sharing/list_folders', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nreq.add_header('Dropbox-API-Select-User', 'dbmid:AAA...')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "List Member's File Requests",
        "body": "python3 <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/file_requests/list_v2', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nreq.add_header('Dropbox-API-Select-User', 'dbmid:AAA...')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nNote: The Dropbox-API-Select-User header requires the team_data.member scope. Use this to operate on user-level endpoints (files, sharing, etc.) on behalf of team members."
      },
      {
        "title": "Pagination",
        "body": "Dropbox Business uses cursor-based pagination. List endpoints return a cursor and has_more field.\n\nInitial Request:\n\nPOST /dropbox-business/2/team/members/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\nResponse:\n\n{\n  \"members\": [...],\n  \"cursor\": \"AAQ...\",\n  \"has_more\": true\n}\n\nContinue with cursor:\n\nPOST /dropbox-business/2/team/members/list/continue\nContent-Type: application/json\n\n{\n  \"cursor\": \"AAQ...\"\n}"
      },
      {
        "title": "JavaScript",
        "body": "async function listTeamMembers() {\n  const response = await fetch(\n    'https://gateway.maton.ai/dropbox-business/2/team/members/list',\n    {\n      method: 'POST',\n      headers: {\n        'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n        'Content-Type': 'application/json'\n      },\n      body: JSON.stringify({ limit: 100 })\n    }\n  );\n  return await response.json();\n}"
      },
      {
        "title": "Python",
        "body": "import os\nimport json\nimport urllib.request\n\ndef list_team_members():\n    url = 'https://gateway.maton.ai/dropbox-business/2/team/members/list'\n    data = json.dumps({'limit': 100}).encode()\n    req = urllib.request.Request(url, data=data, method='POST')\n    req.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\n    req.add_header('Content-Type', 'application/json')\n    return json.load(urllib.request.urlopen(req))\n\ndef get_team_info():\n    url = 'https://gateway.maton.ai/dropbox-business/2/team/get_info'\n    req = urllib.request.Request(url, data=b'null', method='POST')\n    req.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\n    req.add_header('Content-Type', 'application/json')\n    return json.load(urllib.request.urlopen(req))"
      },
      {
        "title": "Notes",
        "body": "POST for Everything: Dropbox Business API uses POST for almost all endpoints, including read operations\nJSON Body Required: Even for endpoints with no parameters, send null as the request body\nTag Format: Many fields use .tag to indicate the type (e.g., {\".tag\": \"email\", \"email\": \"...\"})\nMember Selectors: Use .tag with email, team_member_id, or external_id to identify members\nAsync Operations: Some operations (like group member changes, member removal) may be async; check corresponding job_status endpoints\nSelect-User Header: Use Dropbox-API-Select-User with team_member_id to access user-level endpoints (files, sharing) on behalf of members\nSystem-Managed Groups: Groups like \"Everyone at...\" are system-managed and cannot be modified or deleted\nV2 Endpoints: Use V2 versions of endpoints (e.g., members/list_v2, members/get_info_v2) for enhanced responses with roles information\nDeprecated Endpoints: The reports endpoints (team/reports/get_activity, get_devices, get_membership, get_storage) are deprecated\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Bad request or invalid parameters401Invalid API key or expired token403Permission denied (requires team admin)404Resource not found409Conflict (e.g., member already exists)429Rate limited4xx/5xxPassthrough error from Dropbox API"
      },
      {
        "title": "Response Error Format",
        "body": "{\n  \"error_summary\": \"member_not_found/...\",\n  \"error\": {\n    \".tag\": \"member_not_found\"\n  }\n}"
      },
      {
        "title": "Resources",
        "body": "Dropbox Business API Documentation\nTeam Administration Guide\nTeam Files Guide\nAuthentication Types\nMaton Community\nMaton Support"
      }
    ],
    "body": "Dropbox Business\n\nAccess the Dropbox Business API with managed OAuth authentication. Manage team administration including members, groups, team folders, devices, linked apps, and audit logs.\n\nQuick Start\n# Get team info\npython3 <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/team/get_info', data=b'null', method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/dropbox-business/2/{endpoint-path}\n\n\nReplace {endpoint-path} with the actual Dropbox Business API endpoint path. The gateway proxies requests to api.dropboxapi.com and automatically injects your OAuth token.\n\nIMPORTANT: Dropbox Business API uses POST for almost all endpoints, including read operations. Request bodies should be JSON (use null for endpoints with no parameters).\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Dropbox Business OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython3 <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=dropbox-business&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython3 <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'dropbox-business'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection_id\": \"09062f57-98a9-49f2-9e63-b2a7e03a9d7a\",\n  \"status\": \"PENDING\",\n  \"url\": \"https://connect.maton.ai/?session_token=...\",\n  \"app\": \"dropbox-business\"\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython3 <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nurllib.request.urlopen(req)\nprint(\"Deleted\")\nEOF\n\nSpecifying Connection\n\nIf you have multiple Dropbox Business connections, specify which one to use with the Maton-Connection header:\n\nreq.add_header('Maton-Connection', '{connection_id}')\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nTeam Information\nGet Team Info\n\nRetrieves information about the team including license usage and policies.\n\nPOST /dropbox-business/2/team/get_info\nContent-Type: application/json\n\nnull\n\n\nResponse:\n\n{\n  \"name\": \"My Company\",\n  \"team_id\": \"dbtid:AAC...\",\n  \"num_licensed_users\": 10,\n  \"num_provisioned_users\": 5,\n  \"num_used_licenses\": 5,\n  \"policies\": {\n    \"sharing\": {...},\n    \"emm_state\": {\".tag\": \"disabled\"},\n    \"office_addin\": {\".tag\": \"enabled\"}\n  }\n}\n\nGet Team Features\n\nQuery team feature availability.\n\nPOST /dropbox-business/2/team/features/get_values\nContent-Type: application/json\n\n{\n  \"features\": [\n    {\".tag\": \"upload_api_rate_limit\"},\n    {\".tag\": \"has_team_shared_dropbox\"},\n    {\".tag\": \"has_team_file_events\"},\n    {\".tag\": \"has_team_selective_sync\"}\n  ]\n}\n\n\nResponse:\n\n{\n  \"values\": [\n    {\".tag\": \"upload_api_rate_limit\", \"upload_api_rate_limit\": {\".tag\": \"limit\", \"limit\": 1000000000}},\n    {\".tag\": \"has_team_shared_dropbox\", \"has_team_shared_dropbox\": {\".tag\": \"has_team_shared_dropbox\", \"has_team_shared_dropbox\": false}},\n    {\".tag\": \"has_team_file_events\", \"has_team_file_events\": {\".tag\": \"enabled\", \"enabled\": true}},\n    {\".tag\": \"has_team_selective_sync\", \"has_team_selective_sync\": {\".tag\": \"has_team_selective_sync\", \"has_team_selective_sync\": true}}\n  ]\n}\n\nGet Authenticated Admin\n\nGet info about the currently authenticated admin.\n\nPOST /dropbox-business/2/team/token/get_authenticated_admin\nContent-Type: application/json\n\nnull\n\n\nResponse:\n\n{\n  \"admin_profile\": {\n    \"team_member_id\": \"dbmid:AAA...\",\n    \"account_id\": \"dbid:AAC...\",\n    \"email\": \"admin@company.com\",\n    \"email_verified\": true,\n    \"status\": {\".tag\": \"active\"},\n    \"name\": {\"given_name\": \"Admin\", \"surname\": \"User\", \"display_name\": \"Admin User\"},\n    \"membership_type\": {\".tag\": \"full\"},\n    \"joined_on\": \"2026-02-15T08:27:35Z\"\n  }\n}\n\nTeam Members\nList Members\nPOST /dropbox-business/2/team/members/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\nList Members (V2)\n\nReturns members with roles information (recommended).\n\nPOST /dropbox-business/2/team/members/list_v2\nContent-Type: application/json\n\n{\n  \"limit\": 100,\n  \"include_removed\": false\n}\n\n\nResponse:\n\n{\n  \"members\": [\n    {\n      \"profile\": {\n        \"team_member_id\": \"dbmid:AAA...\",\n        \"account_id\": \"dbid:AAC...\",\n        \"email\": \"user@company.com\",\n        \"email_verified\": true,\n        \"secondary_emails\": [],\n        \"status\": {\".tag\": \"active\"},\n        \"name\": {\n          \"given_name\": \"John\",\n          \"surname\": \"Doe\",\n          \"familiar_name\": \"John\",\n          \"display_name\": \"John Doe\",\n          \"abbreviated_name\": \"JD\"\n        },\n        \"membership_type\": {\".tag\": \"full\"},\n        \"joined_on\": \"2026-01-15T10:00:00Z\",\n        \"groups\": [\"g:1d31f47b...\"],\n        \"member_folder_id\": \"13646219987\",\n        \"root_folder_id\": \"13650024947\"\n      },\n      \"roles\": [\n        {\n          \"role_id\": \"pid_dbtmr:...\",\n          \"name\": \"Team\",\n          \"description\": \"Manage everything and access all permissions\"\n        }\n      ]\n    }\n  ],\n  \"cursor\": \"AAQ...\",\n  \"has_more\": false\n}\n\nContinue Listing Members\nPOST /dropbox-business/2/team/members/list/continue\nContent-Type: application/json\n\n{\n  \"cursor\": \"AAQ...\"\n}\n\nGet Member Info\nPOST /dropbox-business/2/team/members/get_info\nContent-Type: application/json\n\n{\n  \"members\": [{\".tag\": \"email\", \"email\": \"user@company.com\"}]\n}\n\nGet Member Info (V2)\n\nReturns member with roles information (recommended).\n\nPOST /dropbox-business/2/team/members/get_info_v2\nContent-Type: application/json\n\n{\n  \"members\": [{\".tag\": \"email\", \"email\": \"user@company.com\"}]\n}\n\n\nResponse:\n\n{\n  \"members_info\": [\n    {\n      \".tag\": \"member_info\",\n      \"profile\": {\n        \"team_member_id\": \"dbmid:AAA...\",\n        \"email\": \"user@company.com\",\n        \"secondary_emails\": [],\n        \"status\": {\".tag\": \"active\"},\n        \"name\": {...},\n        \"groups\": [\"g:...\"]\n      },\n      \"roles\": [\n        {\"role_id\": \"...\", \"name\": \"Team\", \"description\": \"...\"}\n      ]\n    }\n  ]\n}\n\n\nMember Selectors:\n\n{\".tag\": \"email\", \"email\": \"user@company.com\"}\n{\".tag\": \"team_member_id\", \"team_member_id\": \"dbmid:AAA...\"}\n{\".tag\": \"external_id\", \"external_id\": \"...\"}\nAdd Member\nPOST /dropbox-business/2/team/members/add\nContent-Type: application/json\n\n{\n  \"new_members\": [\n    {\n      \"member_email\": \"newuser@company.com\",\n      \"member_given_name\": \"Jane\",\n      \"member_surname\": \"Smith\",\n      \"send_welcome_email\": true,\n      \"role\": {\".tag\": \"member_only\"}\n    }\n  ]\n}\n\nSuspend Member\nPOST /dropbox-business/2/team/members/suspend\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n  \"wipe_data\": false\n}\n\nUnsuspend Member\nPOST /dropbox-business/2/team/members/unsuspend\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"}\n}\n\nRemove Member\nPOST /dropbox-business/2/team/members/remove\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n  \"wipe_data\": true,\n  \"transfer_dest_id\": {\".tag\": \"email\", \"email\": \"admin@company.com\"},\n  \"transfer_admin_id\": {\".tag\": \"email\", \"email\": \"admin@company.com\"},\n  \"keep_account\": false\n}\n\nCheck Remove Job Status\nPOST /dropbox-business/2/team/members/remove/job_status/get\nContent-Type: application/json\n\n{\n  \"async_job_id\": \"dbjid:...\"\n}\n\nSend Welcome Email\n\nSend or resend welcome email to pending members.\n\nPOST /dropbox-business/2/team/members/send_welcome_email\nContent-Type: application/json\n\n{\".tag\": \"email\", \"email\": \"pending@company.com\"}\n\nSet Member Profile (V2)\n\nUpdate member profile information.\n\nPOST /dropbox-business/2/team/members/set_profile_v2\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"team_member_id\", \"team_member_id\": \"dbmid:AAA...\"},\n  \"new_given_name\": \"John\",\n  \"new_surname\": \"Smith\",\n  \"new_external_id\": \"emp-123\"\n}\n\nDelete Profile Photo (V2)\nPOST /dropbox-business/2/team/members/delete_profile_photo_v2\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"team_member_id\", \"team_member_id\": \"dbmid:AAA...\"}\n}\n\nSet Profile Photo (V2)\nPOST /dropbox-business/2/team/members/set_profile_photo_v2\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"team_member_id\", \"team_member_id\": \"dbmid:AAA...\"},\n  \"photo\": {\".tag\": \"base64_data\", \"base64_data\": \"<base64-encoded-image>\"}\n}\n\nSet Admin Permissions (V2)\n\nChange a member's admin role.\n\nPOST /dropbox-business/2/team/members/set_admin_permissions_v2\nContent-Type: application/json\n\n{\n  \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n  \"new_roles\": [\"pid_dbtmr:...\"]\n}\n\nSecondary Emails\nAdd Secondary Emails\nPOST /dropbox-business/2/team/members/secondary_emails/add\nContent-Type: application/json\n\n{\n  \"new_secondary_emails\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"secondary_emails\": [\"alias@company.com\"]\n    }\n  ]\n}\n\nDelete Secondary Emails\nPOST /dropbox-business/2/team/members/secondary_emails/delete\nContent-Type: application/json\n\n{\n  \"emails_to_delete\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"secondary_emails\": [\"alias@company.com\"]\n    }\n  ]\n}\n\nResend Verification Emails\nPOST /dropbox-business/2/team/members/secondary_emails/resend_verification_emails\nContent-Type: application/json\n\n{\n  \"emails_to_resend\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"secondary_emails\": [\"alias@company.com\"]\n    }\n  ]\n}\n\nGroups\nList Groups\nPOST /dropbox-business/2/team/groups/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\n\nResponse:\n\n{\n  \"groups\": [\n    {\n      \"group_name\": \"Engineering\",\n      \"group_id\": \"g:1d31f47b...\",\n      \"member_count\": 5,\n      \"group_management_type\": {\".tag\": \"company_managed\"}\n    }\n  ],\n  \"cursor\": \"AAZ...\",\n  \"has_more\": false\n}\n\nGet Group Info\nPOST /dropbox-business/2/team/groups/get_info\nContent-Type: application/json\n\n{\n  \".tag\": \"group_ids\",\n  \"group_ids\": [\"g:1d31f47b...\"]\n}\n\nCreate Group\nPOST /dropbox-business/2/team/groups/create\nContent-Type: application/json\n\n{\n  \"group_name\": \"Marketing Team\",\n  \"group_management_type\": {\".tag\": \"company_managed\"}\n}\n\nAdd Members to Group\nPOST /dropbox-business/2/team/groups/members/add\nContent-Type: application/json\n\n{\n  \"group\": {\".tag\": \"group_id\", \"group_id\": \"g:1d31f47b...\"},\n  \"members\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"access_type\": {\".tag\": \"member\"}\n    }\n  ],\n  \"return_members\": true\n}\n\nRemove Members from Group\nPOST /dropbox-business/2/team/groups/members/remove\nContent-Type: application/json\n\n{\n  \"group\": {\".tag\": \"group_id\", \"group_id\": \"g:1d31f47b...\"},\n  \"users\": [{\".tag\": \"email\", \"email\": \"user@company.com\"}],\n  \"return_members\": true\n}\n\nList Group Members\nPOST /dropbox-business/2/team/groups/members/list\nContent-Type: application/json\n\n{\n  \"group\": {\".tag\": \"group_id\", \"group_id\": \"g:1d31f47b...\"},\n  \"limit\": 100\n}\n\n\nResponse:\n\n{\n  \"members\": [\n    {\n      \"profile\": {\n        \"team_member_id\": \"dbmid:AAA...\",\n        \"email\": \"user@company.com\",\n        \"status\": {\".tag\": \"active\"},\n        \"name\": {...}\n      },\n      \"access_type\": {\".tag\": \"member\"}\n    }\n  ],\n  \"cursor\": \"...\",\n  \"has_more\": false\n}\n\nUpdate Group\nPOST /dropbox-business/2/team/groups/update\nContent-Type: application/json\n\n{\n  \"group\": {\".tag\": \"group_id\", \"group_id\": \"g:1d31f47b...\"},\n  \"new_group_name\": \"Updated Name\",\n  \"new_group_external_id\": \"ext-123\"\n}\n\n\nNote: System-managed groups (like \"Everyone at...\") cannot be updated.\n\nDelete Group\nPOST /dropbox-business/2/team/groups/delete\nContent-Type: application/json\n\n{\n  \".tag\": \"group_id\",\n  \"group_id\": \"g:1d31f47b...\"\n}\n\nCheck Group Job Status\n\nFor async group operations.\n\nPOST /dropbox-business/2/team/groups/job_status/get\nContent-Type: application/json\n\n{\n  \"async_job_id\": \"dbjid:...\"\n}\n\nTeam Folders\nList Team Folders\nPOST /dropbox-business/2/team/team_folder/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\n\nResponse:\n\n{\n  \"team_folders\": [\n    {\n      \"team_folder_id\": \"13646676387\",\n      \"name\": \"Company Documents\",\n      \"status\": {\".tag\": \"active\"},\n      \"is_team_shared_dropbox\": false,\n      \"sync_setting\": {\".tag\": \"default\"}\n    }\n  ],\n  \"cursor\": \"AAb...\",\n  \"has_more\": false\n}\n\nGet Team Folder Info\nPOST /dropbox-business/2/team/team_folder/get_info\nContent-Type: application/json\n\n{\n  \"team_folder_ids\": [\"13646676387\"]\n}\n\nCreate Team Folder\nPOST /dropbox-business/2/team/team_folder/create\nContent-Type: application/json\n\n{\n  \"name\": \"New Team Folder\",\n  \"sync_setting\": {\".tag\": \"default\"}\n}\n\nRename Team Folder\nPOST /dropbox-business/2/team/team_folder/rename\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\",\n  \"name\": \"Renamed Folder\"\n}\n\nArchive Team Folder\nPOST /dropbox-business/2/team/team_folder/archive\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\",\n  \"force_async_off\": false\n}\n\nPermanently Delete Team Folder\nPOST /dropbox-business/2/team/team_folder/permanently_delete\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\"\n}\n\nActivate Team Folder\n\nActivate an archived team folder.\n\nPOST /dropbox-business/2/team/team_folder/activate\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\"\n}\n\nUpdate Sync Settings\nPOST /dropbox-business/2/team/team_folder/update_sync_settings\nContent-Type: application/json\n\n{\n  \"team_folder_id\": \"13646676387\",\n  \"sync_setting\": {\".tag\": \"default\"}\n}\n\n\nResponse:\n\n{\n  \"team_folder_id\": \"13646676387\",\n  \"name\": \"Team Folder\",\n  \"status\": {\".tag\": \"active\"},\n  \"is_team_shared_dropbox\": false,\n  \"sync_setting\": {\".tag\": \"default\"},\n  \"content_sync_settings\": []\n}\n\nNamespaces\nList Namespaces\nPOST /dropbox-business/2/team/namespaces/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\n\nResponse:\n\n{\n  \"namespaces\": [\n    {\n      \"name\": \"Team Folder\",\n      \"namespace_id\": \"13646676387\",\n      \"namespace_type\": {\".tag\": \"team_folder\"}\n    },\n    {\n      \"name\": \"Root\",\n      \"namespace_id\": \"13646219987\",\n      \"namespace_type\": {\".tag\": \"team_member_folder\"},\n      \"team_member_id\": \"dbmid:AAA...\"\n    }\n  ],\n  \"cursor\": \"AAY...\",\n  \"has_more\": false\n}\n\nDevices\nList All Members' Devices\nPOST /dropbox-business/2/team/devices/list_members_devices\nContent-Type: application/json\n\n{}\n\n\nResponse:\n\n{\n  \"devices\": [\n    {\n      \"team_member_id\": \"dbmid:AAA...\",\n      \"web_sessions\": [\n        {\n          \"session_id\": \"dbwsid:...\",\n          \"ip_address\": \"192.168.1.1\",\n          \"country\": \"United States\",\n          \"created\": \"2026-02-15T08:26:33Z\",\n          \"user_agent\": \"Mozilla/5.0...\",\n          \"os\": \"Mac OS X\",\n          \"browser\": \"Chrome\"\n        }\n      ],\n      \"desktop_clients\": [],\n      \"mobile_clients\": []\n    }\n  ],\n  \"has_more\": false\n}\n\nList Member Devices\nPOST /dropbox-business/2/team/devices/list_member_devices\nContent-Type: application/json\n\n{\n  \"team_member_id\": \"dbmid:AAA...\"\n}\n\nRevoke Device Session\nPOST /dropbox-business/2/team/devices/revoke_device_session\nContent-Type: application/json\n\n{\n  \".tag\": \"web_session\",\n  \"session_id\": \"dbwsid:...\",\n  \"team_member_id\": \"dbmid:AAA...\"\n}\n\nRevoke Device Sessions (Batch)\nPOST /dropbox-business/2/team/devices/revoke_device_session_batch\nContent-Type: application/json\n\n{\n  \"revoke_devices\": [\n    {\".tag\": \"web_session\", \"session_id\": \"dbwsid:...\", \"team_member_id\": \"dbmid:AAA...\"}\n  ]\n}\n\nLinked Apps\nList Members' Linked Apps\nPOST /dropbox-business/2/team/linked_apps/list_members_linked_apps\nContent-Type: application/json\n\n{}\n\n\nResponse:\n\n{\n  \"apps\": [\n    {\n      \"team_member_id\": \"dbmid:AAA...\",\n      \"linked_api_apps\": [\n        {\n          \"app_id\": \"...\",\n          \"app_name\": \"Third Party App\",\n          \"linked\": \"2026-01-15T10:00:00Z\"\n        }\n      ]\n    }\n  ],\n  \"has_more\": false\n}\n\nList All Team Linked Apps\nPOST /dropbox-business/2/team/linked_apps/list_team_linked_apps\nContent-Type: application/json\n\n{}\n\nRevoke Linked App\nPOST /dropbox-business/2/team/linked_apps/revoke_linked_app\nContent-Type: application/json\n\n{\n  \"app_id\": \"...\",\n  \"team_member_id\": \"dbmid:AAA...\"\n}\n\nMember Space Limits\nGet Custom Quotas\nPOST /dropbox-business/2/team/member_space_limits/get_custom_quota\nContent-Type: application/json\n\n{\n  \"users\": [{\".tag\": \"email\", \"email\": \"user@company.com\"}]\n}\n\nSet Custom Quotas\nPOST /dropbox-business/2/team/member_space_limits/set_custom_quota\nContent-Type: application/json\n\n{\n  \"users_and_quotas\": [\n    {\n      \"user\": {\".tag\": \"email\", \"email\": \"user@company.com\"},\n      \"quota_gb\": 100\n    }\n  ]\n}\n\nList Excluded Users\n\nList users excluded from automatic backup.\n\nPOST /dropbox-business/2/team/member_space_limits/excluded_users/list\nContent-Type: application/json\n\n{}\n\nSharing Allowlist\nList Sharing Allowlist\nPOST /dropbox-business/2/team/sharing_allowlist/list\nContent-Type: application/json\n\n{}\n\n\nResponse:\n\n{\n  \"domains\": [],\n  \"emails\": [],\n  \"cursor\": \"...\",\n  \"has_more\": false\n}\n\nAdd to Sharing Allowlist\nPOST /dropbox-business/2/team/sharing_allowlist/add\nContent-Type: application/json\n\n{\n  \"domains\": [\"partner.com\"],\n  \"emails\": [\"external@client.com\"]\n}\n\nContinue Listing Allowlist\nPOST /dropbox-business/2/team/sharing_allowlist/list/continue\nContent-Type: application/json\n\n{\n  \"cursor\": \"...\"\n}\n\nAudit Log (Team Log)\nGet Events\nPOST /dropbox-business/2/team_log/get_events\nContent-Type: application/json\n\n{\n  \"limit\": 100,\n  \"category\": {\".tag\": \"members\"}\n}\n\n\nResponse:\n\n{\n  \"events\": [\n    {\n      \"timestamp\": \"2026-02-15T08:27:36Z\",\n      \"event_category\": {\".tag\": \"members\"},\n      \"actor\": {\n        \".tag\": \"admin\",\n        \"admin\": {\n          \"account_id\": \"dbid:AAC...\",\n          \"display_name\": \"Admin User\",\n          \"email\": \"admin@company.com\"\n        }\n      },\n      \"event_type\": {\n        \".tag\": \"member_add_name\",\n        \"description\": \"Added team member name\"\n      },\n      \"details\": {...}\n    }\n  ],\n  \"cursor\": \"...\",\n  \"has_more\": false\n}\n\n\nEvent Categories:\n\napps - Third-party app events\ncomments - Comment events\ndevices - Device events\ndomains - Domain events\nfile_operations - File and folder events\nfile_requests - File request events\ngroups - Group events\nlogins - Login events\nmembers - Member events\npaper - Paper events\npasswords - Password events\nreports - Report events\nsharing - Sharing events\nshowcase - Showcase events\nsso - SSO events\nteam_folders - Team folder events\nteam_policies - Policy events\nteam_profile - Team profile events\ntfa - Two-factor auth events\nContinue Getting Events\nPOST /dropbox-business/2/team_log/get_events/continue\nContent-Type: application/json\n\n{\n  \"cursor\": \"...\"\n}\n\nMember File Access\n\nTo access files on behalf of a team member, use the Dropbox-API-Select-User header with the member's team_member_id. This allows admin applications to access member files, shared folders, and file requests.\n\nList Member's Files\npython3 <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\"path\": \"\"}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/files/list_folder', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nreq.add_header('Dropbox-API-Select-User', 'dbmid:AAA...')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nList Member's Shared Folders\npython3 <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/sharing/list_folders', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nreq.add_header('Dropbox-API-Select-User', 'dbmid:AAA...')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nList Member's File Requests\npython3 <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/file_requests/list_v2', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nreq.add_header('Dropbox-API-Select-User', 'dbmid:AAA...')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nNote: The Dropbox-API-Select-User header requires the team_data.member scope. Use this to operate on user-level endpoints (files, sharing, etc.) on behalf of team members.\n\nPagination\n\nDropbox Business uses cursor-based pagination. List endpoints return a cursor and has_more field.\n\nInitial Request:\n\nPOST /dropbox-business/2/team/members/list\nContent-Type: application/json\n\n{\n  \"limit\": 100\n}\n\n\nResponse:\n\n{\n  \"members\": [...],\n  \"cursor\": \"AAQ...\",\n  \"has_more\": true\n}\n\n\nContinue with cursor:\n\nPOST /dropbox-business/2/team/members/list/continue\nContent-Type: application/json\n\n{\n  \"cursor\": \"AAQ...\"\n}\n\nCode Examples\nJavaScript\nasync function listTeamMembers() {\n  const response = await fetch(\n    'https://gateway.maton.ai/dropbox-business/2/team/members/list',\n    {\n      method: 'POST',\n      headers: {\n        'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n        'Content-Type': 'application/json'\n      },\n      body: JSON.stringify({ limit: 100 })\n    }\n  );\n  return await response.json();\n}\n\nPython\nimport os\nimport json\nimport urllib.request\n\ndef list_team_members():\n    url = 'https://gateway.maton.ai/dropbox-business/2/team/members/list'\n    data = json.dumps({'limit': 100}).encode()\n    req = urllib.request.Request(url, data=data, method='POST')\n    req.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\n    req.add_header('Content-Type', 'application/json')\n    return json.load(urllib.request.urlopen(req))\n\ndef get_team_info():\n    url = 'https://gateway.maton.ai/dropbox-business/2/team/get_info'\n    req = urllib.request.Request(url, data=b'null', method='POST')\n    req.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\n    req.add_header('Content-Type', 'application/json')\n    return json.load(urllib.request.urlopen(req))\n\nNotes\nPOST for Everything: Dropbox Business API uses POST for almost all endpoints, including read operations\nJSON Body Required: Even for endpoints with no parameters, send null as the request body\nTag Format: Many fields use .tag to indicate the type (e.g., {\".tag\": \"email\", \"email\": \"...\"})\nMember Selectors: Use .tag with email, team_member_id, or external_id to identify members\nAsync Operations: Some operations (like group member changes, member removal) may be async; check corresponding job_status endpoints\nSelect-User Header: Use Dropbox-API-Select-User with team_member_id to access user-level endpoints (files, sharing) on behalf of members\nSystem-Managed Groups: Groups like \"Everyone at...\" are system-managed and cannot be modified or deleted\nV2 Endpoints: Use V2 versions of endpoints (e.g., members/list_v2, members/get_info_v2) for enhanced responses with roles information\nDeprecated Endpoints: The reports endpoints (team/reports/get_activity, get_devices, get_membership, get_storage) are deprecated\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tBad request or invalid parameters\n401\tInvalid API key or expired token\n403\tPermission denied (requires team admin)\n404\tResource not found\n409\tConflict (e.g., member already exists)\n429\tRate limited\n4xx/5xx\tPassthrough error from Dropbox API\nResponse Error Format\n{\n  \"error_summary\": \"member_not_found/...\",\n  \"error\": {\n    \".tag\": \"member_not_found\"\n  }\n}\n\nResources\nDropbox Business API Documentation\nTeam Administration Guide\nTeam Files Guide\nAuthentication Types\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/dropbox-business",
    "publisherUrl": "https://clawhub.ai/byungkyu/dropbox-business",
    "owner": "byungkyu",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dropbox-business",
    "downloadUrl": "https://openagent3.xyz/downloads/dropbox-business",
    "agentUrl": "https://openagent3.xyz/skills/dropbox-business/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dropbox-business/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dropbox-business/agent.md"
  }
}