Skip to main content
The canonical checkly members commands are available since CLI v8.7.0. Earlier versions use checkly account members, which remains available as a compatibility alias.
The checkly members commands let you list account members and pending invites, update member roles, and remove members from the currently selected account.
Before using checkly members, ensure you have:
  • Checkly CLI installed
  • Valid Checkly account authentication (run npx checkly login if needed)
  • Account admin access for role updates or member deletion
For additional setup information, see CLI overview.

Usage

Terminal

Commands

CommandDescription
membersList account members and pending invites.
members updateUpdate an account member role.
members deleteDelete an account member.

checkly members

List members and pending invites for the currently selected account. You can filter the results or enable cursor pagination for larger accounts. Usage:
Terminal
Options:
OptionRequiredDescription
--search, -s-Search members and invites by name or email.
--type-Filter by item type: member or invite.
--role-Filter by role: owner, admin, read_write, read_run, or read_only.
--status-Filter by status: active, pending, or expired.
--limit, -l-Number of results to return (1-100). Enables cursor pagination.
--next-id-Cursor for the next page. Requires --limit.
--hide-id-Hide member and invite IDs in formatted output.
--output, -o-Output format: table, json, or md. Default: table.

List Examples

Terminal

JSON pagination

When you use --output=json, the command returns the members and invites together with cursor pagination fields:
Use a non-null nextId value with --limit and --next-id to retrieve the next page.

checkly members update

Update an account member’s role. Identify the member by email or user ID. The command shows the proposed change and asks for confirmation by default. Usage:
Terminal
Arguments:
ArgumentDescription
memberThe account member email or user ID.
Options:
OptionRequiredDescription
--role, -rYesNew role: admin, read_write, read_run, or read_only.
--email-Treat the member argument as an email address. Mutually exclusive with --id.
--id-Treat the member argument as a user ID. Mutually exclusive with --email.
--force, -f-Skip the confirmation prompt.
--dry-run-Preview the change without updating the member.
--output, -o-Output format: table, json, or md. Default: table.

Update Examples

Terminal

checkly members delete

Delete an account member by email or user ID. The command shows the member to remove and asks for confirmation by default.
Deleting a member removes their access to the account. Use --dry-run to preview the operation before confirming it.
Usage:
Terminal
Arguments:
ArgumentDescription
memberThe account member email or user ID.
Options:
OptionRequiredDescription
--email-Treat the member argument as an email address. Mutually exclusive with --id.
--id-Treat the member argument as a user ID. Mutually exclusive with --email.
--force, -f-Skip the confirmation prompt.
--dry-run-Preview the deletion without removing the member.

Delete Examples

Terminal