Reference
Every operation, grouped by context, with per-language call tables
Every operation the SDK exposes, grouped by context. How to read the tables:
- Every operation takes three inputs:
pathParams(path values),query(query strings),body(request body). - Response keys are camelized. Exception: row keys inside app-DB row reads (user column names) stay as-is.
- Array responses come back wrapped as
{"value": [...]}. - Path tenant/app identifiers accept UUIDs only — a slug returns 400.
- The node row is the primary one. node uses a resource model with its own method names; the other five languages derive names from the operationId.
| Context | operations | What's inside |
|---|---|---|
| apps | 29 | create/update apps, access, comments, env vars, static release, staging, raw-db toggle |
| identity | 10 | auth, me, PAT, OAuth/OIDC, well-known |
| tenants | 2 | tenants, members, seats, groups, email domains, invite links |
| authz | 1 | issue, inspect, and revoke permission grants |
| gateway | 14 | register external connectors, discover, query, invoke, config |
| data | 5 | read-only raw DB introspection (table list, row browsing) |
| deployments | 24 | trigger deployments, status, cancel, rollback, logs, diagnosis, git connection |
| Error handling | — | category/code tables |