Browse docsMenu

SDK

Core Client

The namespace map exposed by LemmaClient and how to work with pod-scoped versus org/user surfaces.

Namespaces

ScopeNamespaces
Pod-scopedtables, records, files, functions, agents, conversations, workflows, apps, resources, schedules, datastore
Org and userusers, organizations, pods, podMembers, podJoinRequests, podSurfaces, icons
External systemsconnectors

Switch pod scope

tscopy
const rootClient = new LemmaClient({ apiUrl, authUrl });
const podClient = rootClient.withPod("<pod-id>");

const tables = await podClient.tables.list();
const currentUser = await podClient.users.current();