Organizations

An organization is the top-level model in IcePanel. It owns all landscapes, manages billing, and controls who has access.


Every API key and every landscape belongs to exactly one organization. The organizationId is the first path parameter you’ll need for most operations.

GET
/v1/organizations/:organizationId
1import { IcePanelClient } from "@icepanel/sdk";
2
3async function main() {
4 const client = new IcePanelClient({
5 apiKey: "YOUR_API_KEY_HERE",
6 });
7 await client.organizations.get("organizationId");
8}
9main();