Update Organization
PUThttps://api.confident-ai.com/v2/organization
Renames the organization and returns it as stored. The name is the only field this endpoint changes — the plan follows your subscription and cannot be set through the API.
curl -X PUT "https://api.confident-ai.com/v2/organization" \
-H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>" \
-H "Content-Type: application/json" \
-d '{
"name": "Acme"
}'{
"success": true,
"data": {
"id": "<ORGANIZATION-ID>",
"name": "Acme",
"plan": "TRIAL",
"created_at": "2025-01-14T09:30:00.000Z"
},
"deprecated": false
}Headers
CONFIDENT_API_KEYstringRequiredThe organization API key for your Confident AI organization.
Request body
namestringRequiredThe name of the organization, as it appears throughout the Confident AI platform.
Response
Update Organization succeeded.
successbooleanIndicates if the request was successful.
dataobjectThe tenant every project, API key and member belongs to. An organization API key is scoped to exactly one of these, so this is the top of the hierarchy the admin endpoints operate on.
Show 4 propertiesHide 4 properties
idstringThe id of the organization, generated by Confident AI.
namestringThe name of the organization.
planenumThe billing plan the organization is on, which decides its entitlements and usage limits. Plans rank FREE and TRIAL, then STARTER, PREMIUM, TEAM and ENTERPRISE, each carrying every lower plan's entitlements plus more projects and seats: FREE allows a single project, STARTER up to five, and the paid plans above it bill extra project spaces as usage. Some features are reserved outright — red teaming through the API is ENTERPRISE only. TRIAL is a time-limited run at paid entitlements; once the trial period has elapsed the organization is entitled as FREE, but this field keeps reporting the stored plan, so it is not a substitute for a 403 when deciding whether a call will be allowed.
Show 6 enum valuesHide 6 enum values
TRIALFREESTARTERENTERPRISETEAMPREMIUM
created_atstringWhen the organization was created.
deprecatedbooleanIndicates if this endpoint is deprecated.