Skip to main content

mr group edit-description

Replace a Group's Description field. Takes the Group ID and the new description as positional arguments. Sends POST /v1/group/editDescription and returns {id, ok} on success. Descriptions are free-form text used for human-readable context; for structured metadata use edit-meta.

Usage

mr group edit-description <id> <new-description>

Positional arguments:

  • <id>
  • <new-description>

Examples

Update the description on group 42

mr group edit-description 42 "Our summer 2026 travel photos"

Flags

This command has no local flags.

Inherited global flags

FlagTypeDefaultDescription
--jsonboolfalseOutput raw JSON
--no-headerboolfalseOmit table headers
--pageint1Page number for list commands (default page size: 50)
--quietboolfalseOnly output IDs
--serverstringhttp://localhost:8181mahresources server URL (env: MAHRESOURCES_URL)

Output

Status object with id (uint) and ok (bool)

Exit Codes

0 on success; 1 on any error

See Also