Sign in

Obtain access token

documented

Obtain an OAuth 2.0 access token for API authentication.

POST /oauth2/tokenAuthenticationno 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.signnow.com/oauth2/token" \
  -X POST \
  -H "Authorization: Basic {{SIGNNOW_CLIENT_CREDENTIALS_B64}}" \
  -H "Accept: application/json" \
  -F 'username={{email}}' \
  -F 'password={{password}}' \
  -F 'grant_type=password' \
  -F 'scope=*'
Obtain access token · airSlate SignNow · OpenIntegrations