This authentication scheme allows an application to obtain an access token by exchanging its application credentials, such as client ID and client secret. This flow is particularly suitable for Machine-to-Machine (M2M) applications, including your application or backend services, as it enables the authentication and authorization of the application itself, rather than that of a user. 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
https://vantage-[region].abbyy.com/auth2/connect/tokenresource. - A
Content-Typeheader with theapplication/x-www-form-urlencodedencoding. - A request body with the following parameters:
| Parameter | Description |
|---|---|
| client_id | Application identifier. |
| client_secret | Secure application key. |
| grant_type=client_credentials | Specifies that the client credentials grant type is used. |
| scope=openid permissions global.wildcard | Specifies the permission scope. |
