This endpoint is used to authorize Passwordless link sent to user by email/sms.
A valid request will redirect to This is the OAuth 2.0 grant that Client-side web apps utilize in order to access an API.
Documentation Index
Fetch the complete documentation index at: https://docs.dintero.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication (token authentication) should be used for accessing the API.
Use Get Token to get an access token for client credentials. Pass the token in the request header:
Authorization: Bearer {access_token}where the access_token is JSON Web Tokens (JWT).
An id that uniquely identifies the account or owner (partner)
The unique identifier of the target API you want to access.
The scopes which you want to request authorization for.
openid This will specify the type of token you will receive at the end of the flow. Use token to get only an access_token
If response_type=token, after the user authenticates with the
provider, this will redirect them to your application callback URL
while passing the access_token in the address location.hash.
This is used for Single Page Apps and on Native Mobile SDKs.
authenticate Your application's Client ID.
An opaque value the clients adds to the initial request that Dintero includes when redirecting the back to the client. This value must be used by the client to prevent CSRF attacks.
The URL to which Dintero will redirect the browser after authorization has been granted by the user.
The redirect_uri value must be specified as a valid
callback URL under your Client's Settings.
one-time verification-code
The name of the connection configured to your client.
Found