Launch Week 02 wrapped — explore all five launches

Organization Management with Admin SDK

Read and rename the organization tied to your API key.

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.

Get Your Organization

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

from confidentai import ConfidentAI

client = ConfidentAI()

org = client.organization()
organization = org.get()
print(organization.id, organization.name)

Rename Your Organization

You can update your organization's name.

org = client.organization()
organization = org.update(name="Example Org")

Next Steps

Manage the resources in your organization:

Setting this up for your organization?Set up the controls your team needs before a wider rolloutTalk to us

Last updated on

Built byConfident AI