MCP is live.Set upAsk on Discord
OmniDimension
Reseller

Set child concurrency limit

Set the maximum number of simultaneous calls a client can run. new_limit is the absolute figure you want, not a change to the current one.

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

Response Body

application/json