admin

Superadmin operations: list resources across all users, batch delete, and transfer resources between users. Requires superadmin permissions.

carto admin list <resource-type>

List all resources across the organization (not just yours).

carto admin list maps
carto admin list workflows
carto admin list connections

# With pagination and search
carto admin list maps --page-size 50
carto admin list connections --search snowflake

# Fetch every page
carto admin list maps --all
carto admin list workflows --all

Resource types: maps, workflows, connections.

Options:

Option
Description

--page <n>

Page number.

--page-size <n>

Items per page.

--search <term>

Search by name or description.

--all

Fetch all pages automatically.

carto admin batch-delete <json-body>

Delete multiple resources in a single call.

carto admin transfer <json-body>

Transfer resources from one user to another.

carto admin settings get | apply | diff

Round-trip org-wide administrative settings (basemaps toggles, palettes, maps, connections, workflows, builder-gen-ai, carto-ai) as a single JSON bundle. The same shape that apply accepts is what get emits, so the three subcommands compose for moving settings between environments or capturing a snapshot for audit.

Subcommands:

Subcommand
Description

settings get

Read the current org settings as a JSON bundle.

settings apply

Apply a bundle. Sections present in the bundle are PATCHed individually; sections absent from the bundle are left untouched.

settings diff

Preview what apply would change. Pure read-only — no writes.

Options:

Option
Description

--out <file>

(get only) Write the bundle to a file instead of stdout.

--file <path>

(apply only) Read the bundle from a file instead of the positional argument or stdin.

Last updated

Was this helpful?