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
    • Platform Settings
    • Data Residency
    • RBAC
  • Project Settings
    • API Keys
    • Team Members
    • Roles & Permissions
    • Transformers
    • Integrations
    • Alerts
    • AI Connections
    • Model Costs
    • Data Usage
    • Evaluation Models
    • Evaluation Rules
    • Annotation Options
    • Classifiers
    • Data Sources
    • Data Retention
    • Audit Logs
  • Organization Settings
    • Projects
    • Users
    • Roles & Permissions
    • Model Credentials
    • SSO
    • Data Retention
    • Audit Logs
    • Feature Access
  • Admin SDK
    • Introduction
    • Quickstart
    • Organization
    • Projects
    • Members & Invitations
    • Roles, Policies & Permissions
    • API Keys
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
On this page
  • Overview
  • Get Your Organization
  • Rename Your Organization
  • Next Steps
Admin SDK

Organization

Read and rename the organization tied to your API key.
Was this page helpful?
Previous

Projects

Create, read, update, and delete projects in your organization.
Next
Built with

Overview

Your organization is the top-level account that owns every project, member, role, and API key. With the Admin SDK you can read and rename the organization tied to your API key.

All methods on this page require an Organization API Key. See the Quickstart to create a client.

Get Your Organization

You can retrieve the organization tied to your API key, including its id and name.

Python
TypeScript
1from confidentai import ConfidentAI
2
3client = ConfidentAI()
4
5org = client.organization()
6organization = org.get()
7print(organization.id, organization.name)

Rename Your Organization

You can update your organization’s name.

Python
TypeScript
1org = client.organization()
2organization = org.update(name="Example Org")

Next Steps

Manage the resources in your organization:

Projects

Create, update, and delete projects.

Members & Invitations

Invite members and assign roles.