PUT /settings/organization
Set the organization settings.
| Method | Path |
|---|---|
| PUT | /v1/settings/organization |
Replaces all three: `default_model` accepts an alias or canonical id and is stored canonical; `default_environment` accepts a name or `env_` id and is stored as the id; `budget_ceiling.session` is in US dollars, at most the platform ceiling. Null clears each. Refused for sandbox tokens (potentially prompt-injected code must not repoint the organization's defaults).
curl -X PUT "https://api.ellipsis.dev/v1/settings/organization" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.settings.organization.set()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.settings.organization.set();
console.log(result);Request
Body parameters
The organization's spend ceilings.
The saved environment sessions run in when neither their request nor their automation names one: an `env_...` id or the environment's name on write, always the id on read. Null means the built-in basic sandbox.
Canonical model id every session falls back to when neither its request nor its automation names one, or null when unset (sessions then run the platform default).