Obtain access token
documentedObtain an OAuth 2.0 access token for API authentication.
POST /oauth2/tokenAuthenticationno 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.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=*'