Skip to content

caeops > groups

add-user

Description


This command helps to add an user to a group. Run caeops groups add-user --help for more help.

Synopsis


  add-user
--group-name [value]
--email [value]

Options


--group-name (string)

A group name to which you want to add the user

--email (string)

Email of the users that you want to add to the group

Examples


To add users to a group.

The following groups add-users example add a user to a group.

caeops groups add-user --group-name=example --email=example@example.com

Output


User details -> (structure)

  • email -> (string)
    Email address of the user
  • givenName -> (string)
    Name of the user
  • familyName -> (string)
    Family name of the user
  • linkedinUrl -> (string)
    LinkedIn url of the user
  • picture -> (string)
    Url of the user's picture
  • phoneNumber -> (number)
    Phone number of the user
  • roles -> (list)
    Roles assigned to the user
  • gender -> (list)
    Gender of the user
  • address -> (list)
    Address of the user
  • birthdate -> (list)
    Birthdate of the user
  • createdAt -> (long)
    Creation timestamp
  • updatedAt -> (long)
    Last modified timestamp
Back to top