License
Read the tenant's import limits.
This functionality is in preview mode - some of the features may not be fully operational yet.
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.
- : Needed to trigger, schedule, monitor, and cancel import runs and to read configurations, streams, schedules, runs, and imported data.
The tenant you want to access.
mytenantThe request was successful. The limits are returned.
The import limits that apply to the tenant.
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.
10000The maximum number of runs that may be active at once for the tenant. A run requested beyond this limit is rejected with 429.
2The number of records written to the target per request.
100The number of target writes performed in parallel.
1Given request is unauthorized - the authorization token is invalid or has expired. Details will be provided in the response payload.
Given authorization scopes are not sufficient and do not match scopes required by the endpoint.
Internal Service Error occurred.
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?

