gplay team users view
Show a single member of the Developer account, addressed by email: their accessState, account-wide permissions (account-wide admins are marked in the ADMIN field), and their per-app Grants one row each.
The Play Developer API has no users.get (a member's Grants are a field of the
User), so this lists the account and filters client-side — the same cost as
gplay team grants list --user. A member that is not on the account fails with
exit 30 (run gplay team users list to see who is).
The Developer account is resolved through the gplay cascade (later wins): the active Account's developer-id, the project-local .gplay/config.local.json, GPLAY_DEVELOPER_ID, then --developer-id. An unresolved id fails with exit 10.
--output json is the matched User object verbatim (the exact users.list bytes for that member, grants included); --output markdown renders a record plus a grants table.
gplay team users view <email> [flags]| Flag | Description |
|---|---|
--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) |
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) |