Skip to main content

signaloid-cli users update

Update user profile information.

Synopsis​

signaloid-cli users update [options]

Options​

OptionDescription
--name <name>Update display name
--organization <org>Update organization name

Description​

The users update command allows you to modify your user profile information, including your display name and organization name. Changes are applied immediately and reflected across the Signaloid platform.

Examples​

Update display name:

signaloid-cli users update --name "John Smith"

Update organization:

signaloid-cli users update --organization "New Company Inc"

Update multiple fields:

signaloid-cli users update \
--name "Jane Doe" \
--organization "Tech Startup"

Notes​

  • At least one option must be provided.
  • Changes are applied immediately.
  • Use signaloid-cli users me to verify the updates.
  • Some fields like email and plan type cannot be changed via Signaloid CLI.

Troubleshooting​

"Not authenticated" Error​

Problem: Command fails with authentication error.

Solutions:

  1. Login first: signaloid-cli auth login
  2. Verify authentication: signaloid-cli auth whoami
  3. Check API key is valid

Update Not Reflected​

Problem: Changes do not appear when running users me.

Solutions:

  1. Wait a few seconds and try again (API propagation delay)
  2. Verify the update command completed successfully
  3. Check for error messages in the command output

See Also​