This authentication scheme is relatively simple and allows the application to log into the user’s system without using the browser by directly processing the username and password. If an external Identity Provider is configured for a tenant, the Resource Owner Password Credentials authentication scheme will not work. To obtain the access token, use the following:Documentation Index
Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
Use this file to discover all available pages before exploring further.
- A POST request.
- The token endpoint. If your email address is connected to several accounts in different tenants and you use this authentication, use
https://vantage-<region>.abbyy.com/auth2/{tenantId}/connect/token. - A
Content-Typeheader with theapplication/x-www-form-urlencodedencoding. - A request body with the following parameters:
| Parameter | Description |
|---|---|
| grant_type=password | Specifies that the password grant type is used. |
| scope=openid permissions global.wildcard | Specifies the permission scope. |
| username and password | Your credentials. |
| client_id | Application identifier. |
| client_secret | Secure application key. |
