API Reference

Authorize

Initiates the OAuth 2.0 authorization flow by redirecting users to authorize your application.

After the user authorizes your application, they will be redirected to your redirect_uri with the authorization code as a query parameter.

Example Usage:

https://connect.digits.com/v1/oauth/authorize?response_type=code &client_id=<your_client_id_here> &redirect_uri=<valid_redirect_url> &scope=source%3Async%20ledger%3Aread%20documents%3Awrite &state=<random_state_string>

Redirect Response: After authorization, the user will be redirected to:

https://yourapp.com/oauth/callback?code=base64_encoded_authorization_code&state=random_state_string
Language
Click Try It! to start a request and see the response here!