Dropbox SignDropbox Sign eSignature API
GET/account
Get Account
Returns the properties and settings of your Account.
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
accountGet- Server
https://api.hellosign.com/v3- Authentication
- api_key, oauth2
Request parameters
account_id
querystring
`account_id` or `email_address` is required. If both are provided, the account id prevails. The ID of the Account.
example-account-id
email_address
querystring
`account_id` or `email_address` is required, If both are provided, the account id prevails. The email address of the Account.
developer@example.com
Responses
200
AccountGetResponseapplication/json
successful operation
Properties: accountwarnings
4XX
ErrorResponseapplication/json
failed_operation
Properties: error
{
"account": {
"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"
},
"warnings": [
{
"warning_name": "Example Name"
}
]
}