Dropbox Sign/teamMembers

Preview only · details below

Dropbox SignDropbox Sign eSignature API

GET/team/members/{team_id}

List Team Members

Provides a paginated list of members (and their roles) that belong to a given team.

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
teamMembers
Server
https://api.hellosign.com/v3
Authentication
api_key, oauth2

Request parameters

team_id

pathstringrequired

The id of the team that a member list is being requested from.

4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c

page

queryinteger

Which page number of the team member list to return. Defaults to `1`.

1

page_size

queryinteger

Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`.

20

Responses

200

TeamMembersResponseapplication/json

successful operation

Properties: team_memberslist_infowarnings

4XX

ErrorResponseapplication/json

failed_operation

Properties: error

{
  "team_members": [
    {
      "account_id": "example-account-id",
      "email_address": "developer@example.com"
    }
  ],
  "list_info": {
    "num_pages": 0,
    "num_results": 0,
    "page": 0,
    "page_size": 0
  },
  "warnings": [
    {
      "warning_name": "Example Name"
    }
  ]
}