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>Python SDKpython
from arelis import create_arelis_platform
import os
platform = create_arelis_platform({
"baseUrl": "https://api.arelis.digital",
"apiKey": os.environ["ARELIS_API_KEY"],
})
response = platform.organization.get()
print(response)Response
// Response type
Promise<OrganizationResponse>
// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));