Skip to content

caeops > users

register

Description


This command helps you register an user with CloudAEye. Run caeops users register --help for more help.

Synopsis


  register
 --email [value]
 --given-name [value]
 --family-name [value]
 --phone-number [value]
 [--linkedin-url [value]]
 [--picture [value]]
 [--birthdate [value]]
 [--gender [value]]
 [--address [value]]

Options


--email (string)

A valid email-id for account registration

--given-name (string)

A name for account registration

--family-name (string)

Family name of the user

--phone-number (number)

Valid phone number of the user(format -> +[country code][phone number])

--linkedin-url (string)

LinkedIn url of the user

--picture (string)

URL of the picture

--birthdate (date)

Birthday of the user

--gender (string)

Gender of the user

--address (string)

Valid address of the user

Examples


To register a user with CloudAEye.

The following register example registers a user with CloudAEye.

caeops users register --email=user@example.com --given-name=example --family-name=user-example --phone-number=123456789

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