Skip to main content

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 System Administrator can assign the Fulfillment Operator role to a Tenant Administrator. Once assigned, the Tenant Administrator can create new tenants through the Vantage API and grant this role to other users in their tenant. To create a tenant using the Vantage API, a Fulfillment Operator must:
  1. Authorize in the Vantage API. For details, see Authentication.
  2. Send a POST request with the Authorization = Bearer <access token> header to {baseUrl}/api/publicapi/v1/invites/, with the following request body parameters:
ParameterDescription
ModelAn object that contains the following parameters: useMySubscription, email, tenantName, validWithin, and tenantDescription.
emailThe newly created Tenant Administrator’s email.
validWithinTime from the moment of sending, during which an invite can be accepted. The format is days.hours:minutes:seconds. The default value is 14.00:00:00 (14 days).
tenantNameThe tenant’s name. Tenant names must be unique. Creating a tenant with a name that already exists triggers an error.
useMySubscriptionIndicates whether the current tenant’s subscription should be reused. If enabled, both the current and new tenants share the same page-usage counter. When the counter is exhausted by either tenant, both are prevented from using it. The default is False, meaning a new subscription file must be downloaded.
tenantDescriptionThe tenant’s description. This can be any text describing the tenant, and is visible to the System Administrator.

Sample request

curl --request POST \
  --url https://vantage-us.abbyy.com/api/publicapi/v1/invites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'Model={
  "useMySubscription": false,
  "email": "test@test.com",
  "tenantName": "name",
  "validWithin": "14.00:00:00",
  "tenantDescription": "description"
}' \
  --form File='@example-file'

Tenant management

Overview of tenant administration in Vantage

Managing Vantage API clients

Provision API clients for the new tenant

Creating a client using the Vantage API

Programmatic API client creation