signaloid-cli users update
Update user profile information.
Synopsis
signaloid-cli users update [options]
Options
| Option | Description |
|---|---|
--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 meto 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:
- Login first:
signaloid-cli auth login - Verify authentication:
signaloid-cli auth whoami - Check API key is valid
Update Not Reflected
Problem: Changes don't appear when running users me.
Solutions:
- Wait a few seconds and try again (API propagation delay)
- Verify the update command completed successfully
- Check for error messages in the command output
See Also
- signaloid-cli users - User management overview
- signaloid-cli users me - View user information
- signaloid-cli auth - Authentication commands