Platform API ClientClient group1 methodsOrganizationMethods
Organization
Read the current authenticated organization profile used for billing and project governance context.
Tenant metadata
Organization
organization.get()
Generated exampleHTTP endpoint wrapperGET /api/v1/organizationGET /api/v1/organization
Signature
get(): Promise<OrganizationResponse>TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";
const client = new ArelisClient({
baseUrl: "https://api.arelis.digital",
apiKey: process.env.ARELIS_API_KEY,
});
const response = await client.organization.get();
console.log(response);Response
// Response type
Promise<OrganizationResponse>
// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));