gplay team grants list
List the per-app Grants of the Developer account's members: which member has which app-level permissions on which package.
The Play Developer API has no grants-list endpoint (a Grant is a field of the User), so this reads the full member list (paginated to completion) and projects the grants. Filter with --package <pkg> ("who can touch this app") or --user <email> ("what apps this person touches"); neither lists all grants.
Default table columns: user, package, permissions. --output json is a faithful {"grants":[…]} projection.
gplay team grants list [flags]| Flag | Description |
|---|---|
--columns string | comma-separated table columns to show (default: user,package,permissions) |
--developer-id string | Play Console Developer account id (overrides the active Account's, env, and project-local) |
--output string | output format: table, json, or markdown (default: auto — table on TTY, json in pipes/CI) |
--package string | filter to one app's grantees (who can touch this app) |
--user string | filter to one member's grants (what apps this person touches) |
Global flags
Section titled “Global flags”| Flag | Description |
|---|---|
--account string | name of a stored Account to use (overrides env and active Account) |
--retry int | retry transient failures (transport errors, 5xx, 429) up to N times with exponential backoff (default: 0, no retry) |
--service-account string | path to a service-account JSON, or inline JSON content (overrides --account, env, and active Account) |
--timeout duration | per-request API timeout, e.g. 30s or 2m (default: 60s for control-plane calls, none for uploads) |
-v, --verbose | log flow steps to stderr (info level) |