Dropbox Sign/teamAddMember

Preview only · details below

Dropbox SignDropbox Sign eSignature API

PUT/team/add_member

Add User to Team

Invites a user (specified using the `email_address` parameter) to your Team. If the user does not currently have a Dropbox Sign Account, a new one will be created for them. If a user is already a part of another Team, a `team_invite_failed` error will be returned.

Manage accounts, signature requests, templates, teams, bulk sends, file downloads, fax, and event callbacks through the complete Dropbox Sign v3 API; the Hub provides documentation and a local SDK/CLI only.

Request

operationId
teamAddMember
Server
https://api.hellosign.com/v3
Authentication
api_key, oauth2

Request parameters

team_id

querystring

The id of the team.

4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c

Request body

TeamAddMemberRequestrequired

Content-Type: application/json

Properties: account_idemail_addressrole

{
  "account_id": "example-account-id",
  "email_address": "developer@example.com",
  "role": "Member"
}

Responses

200

TeamGetResponseapplication/json

successful operation

Properties: teamwarnings

4XX

ErrorResponseapplication/json

failed_operation

Properties: 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"
    }
  ]
}