Create API App
documentedCreates a new API App.
POST /api_appAPI Appno implementation yet0 runsNo 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/api_app" \
-X POST \
-u "{{HELLOSIGN_API_KEY}}:" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "domains": ["{{$domain}}"], "callback_url": "{{$callback_url}}", "oauth": {"callback_url": "{{$oauth_callback_url}}", "scopes": ["basic_account_info","request_signature"]}, "white_labeling_options": {"primary_button_color": "{{$primary_button_color}}", "primary_button_text_color": "{{$primary_button_text_color}}" } }'