import Jetti from 'jetti';const client = new Jetti({ apiKey: process.env['JETTI_API_KEY'], // This is the default and can be omitted});const namespaces = await client.beta.namespaces.list();console.log(namespaces.results);
Lists all namespaces for the authenticated company.
GET
/
v1beta
/
namespaces
JavaScript
Copy
import Jetti from 'jetti';const client = new Jetti({ apiKey: process.env['JETTI_API_KEY'], // This is the default and can be omitted});const namespaces = await client.beta.namespaces.list();console.log(namespaces.results);