Organization

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.

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.

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.

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

Next Steps

Manage the resources in your organization: