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)import { ConfidentAI } from "confidentai";
const client = new ConfidentAI();
const org = client.organization();
const organization = await org.get();
console.log(organization.id, organization.name);Rename Your Organization
You can update your organization's name.
org = client.organization()
organization = org.update(name="Example Org")const org = client.organization();
const organization = await 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 usLast updated on