Sign in

Create Account

documented

Creates a new Dropbox Sign account associated with the specified email address.

POST /v3/account/createAccountno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.hellosign.com/v3/account/create" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \\
  -u '{{HELLOSIGN_CLIENT_ID}}:{{HELLOSIGN_CLIENT_SECRET}}' \
  -d '{"email_address": "{{$email_address}}", "client_id": "{{$client_id}}", "client_secret": "{{$client_secret}}", "locale": "{{$locale}}"}'