Dropbox Sign/teamGet

仅预览 · 原因见下方

Dropbox SignDropbox Sign 电子签名 API

GET/team

获取团队

返回有关您的团队的信息及其成员列表。如果您不属于团队,则会返回 error_name 为“not_found”的 404 错误。

通过完整的 Dropbox Sign v3 API 管理账户、签名请求、模板、团队、批量发送、文件下载、传真和事件回调;Hub 仅提供文档与本地 SDK/CLI。

请求

operationId
teamGet
服务器
https://api.hellosign.com/v3
认证
api_key, oauth2

请求参数

无 URL、查询或 Header 参数。

响应

200

TeamGetResponseapplication/json

成功响应

字段: teamwarnings

4XX

ErrorResponseapplication/json

操作失败

字段: error

{
  "team": {
    "name": "Example Name",
    "accounts": [
      {
        "account_id": "example-account-id",
        "email_address": "developer@example.com",
        "is_locked": false,
        "is_paid_hs": false,
        "is_paid_hf": false,
        "quotas": {
          "api_signature_requests_left": 0,
          "documents_left": 0,
          "templates_total": 0,
          "templates_left": 0,
          "sms_verifications_left": 0,
          "num_fax_pages_left": 0
        },
        "callback_url": "https://example.com/resource"
      }
    ],
    "invited_accounts": [
      {
        "account_id": "example-account-id",
        "email_address": "developer@example.com",
        "is_locked": false,
        "is_paid_hs": false,
        "is_paid_hf": false,
        "quotas": {
          "api_signature_requests_left": 0,
          "documents_left": 0,
          "templates_total": 0,
          "templates_left": 0,
          "sms_verifications_left": 0,
          "num_fax_pages_left": 0
        },
        "callback_url": "https://example.com/resource"
      }
    ],
    "invited_emails": [
      "developer@example.com"
    ]
  },
  "warnings": [
    {
      "warning_name": "Example Name"
    }
  ]
}