For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Trust CenterStatusSupportGet a demoPlatform
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
  • Get Started
    • Introduction
    • Quickstart
    • Authentication
    • Data Models
    • API Conventions
  • Data Models
      • GETRetrieve Organization
      • PUTUpdate Organization
  • Evals
  • Legacy
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
Data ModelsOrganization

Update Organization

PUT
https://api.confident-ai.com/v1/organization
PUT
/v1/organization
$curl -X PUT https://api.confident-ai.com/v1/organization \
> -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>" \
> -H "Content-Type: application/json" \
> -d '{
> "name": "Acme Inc."
>}'
200Updated
1{
2 "success": true,
3 "data": {
4 "organization": {
5 "id": "ORGANIZATION-ID",
6 "name": "Acme Inc.",
7 "plan": "PREMIUM",
8 "created_at": "2024-12-04T23:00:00.000Z"
9 }
10 }
11}
Updates the organization's name.
Was this page helpful?
Previous

List Organization API Keys

Next
Built with

Headers

CONFIDENT_API_KEYstringRequired
The organization API key for your Confident AI organization.

Request

This endpoint expects an object.
namestringRequired
New name for the organization

Response

successboolean
Indicates if the request was successful
dataobject