For the complete documentation index, see llms.txt. This page is also available as Markdown.

License

Read the tenant's import limits.

Retrieving import limits

get

Retrieves the tenant's import limits. If an import exceeds maxRecordsPerEntity, excess records are skipped and the run finishes with the PARTIAL status. If maxConcurrentImports runs are already active, additional run requests are rejected with a 429 Too Many Requests response.

Contact Emporix Support to have a limit raised.

Required scopes
This endpoint requires the following scopes:
  • : Needed to trigger, schedule, monitor, and cancel import runs and to read configurations, streams, schedules, runs, and imported data.
Authorizations
OAuth2clientCredentialsRequired
Token URL:
Path parameters
tenantstringRequired

The tenant you want to access.

Example: mytenant
Responses
200

The request was successful. The limits are returned.

application/json

The import limits that apply to the tenant.

maxRecordsPerEntityintegerOptional

The maximum number of records a single run may write per target type. Records beyond the limit are skipped and the run finishes as PARTIAL.

Example: 10000
maxConcurrentImportsintegerOptional

The maximum number of runs that may be active at once for the tenant. A run requested beyond this limit is rejected with 429.

Example: 2
batchSizeintegerOptional

The number of records written to the target per request.

Example: 100
workersintegerOptional

The number of target writes performed in parallel.

Example: 1
get/importtool/{tenant}/license
GET /importtool/{tenant}/license HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "maxRecordsPerEntity": 10000,
  "maxConcurrentImports": 2,
  "batchSize": 100,
  "workers": 1
}

Last updated

Was this helpful?