Ask Kevin is smarter.
OmniDimension
Reseller

Set child concurrency limit

Set the maximum number of simultaneous calls a child organization can run. Slots come from the reseller's shared pool. Increasing the limit deducts the delta from your pool and fails if you don't have enough slots. Decreasing the limit returns the delta to your pool immediately.

Reseller accounts only. Request access.

POST/reseller/concurrency
Body
2 fields
·

ID of the child organization to update.

The desired absolute concurrent call limit (must be `>= 0`).

curl -X POST 'https://backend.omnidim.io/api/v1/reseller/concurrency' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "child_organization_id": 4002,
  "new_limit": 5
}'
Example response
synthetic
{
  "success": true,
  "message": "Concurrency limit updated successfully.",
  "child_limit": 5,
  "reseller_available": 7
}

Authorization

BearerAuth
AuthorizationBearer <token>

Bearer token authentication. Obtain your API key from the OmniDimension dashboard.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json