edit
The organization edit command allows administrators to update their organization’s details such as address, city, region, postal code, phone number, and description. You can either modify these details interactively through a Text User Interface (TUI) or directly using flags for specific fields. If you need to update fields like Country or Sales, use the TUI mode (run the command without flags).
Usage
cldkctl organization edit [flags]Steps
Option 1 — Interactive Mode (TUI)
Run the following command in your terminal
./cldkctl organization edit
Country
Use ↑ or ↓ arrows to navigate through the country list.
Type / to filter and quickly find a country.
Press Enter to select a country and proceed to the next field.
Business Phone Number
Type directly to input your organization’s phone number.
Press Enter to move to the next field.
Sales
Use ↑ / ↓ to navigate through available sales representatives.
Type / to filter the list.
Press Enter to select and proceed.

City
Type your city name directly.
Press Enter to continue.
Region
Type your region or province name.
Press Enter to continue.
ZIP
Enter the postal or ZIP code.
Press Enter to move forward.

Address
Type the organization’s full address
Use:
Alt + Enter or Ctrl + J to insert a new line.
Ctrl + E to open text editor mode.
Press Enter to proceed after finishing the input.
Description
Type a short description of your organization.
You can also use:
Alt + Enter / Ctrl + J to insert a new line.
Ctrl + E to open text editor mode.
Confirmation
Use When all fields are filled, you will see the prompt
Save organization profile? [Confirm / Cancel]Press Y to confirm and save changes or press N to cancel and discard changes.
Navigation Tabs
Shift + Tab to move back to the previous field.
Enter to go to the next field.
Option 2 — Using Flags (Non-Interactive Mode)
If you prefer to directly update specific fields, you can use command flags.
./cldkctl organization edit --address "Jl. Testing No. 123456, DKI Jakarta"You can also update multiple fields simultaneously by combining flags in a single command. Each flag corresponds to a profile field, and all provided values will be updated together.
./cldkctl organization edit \--address "Jl. Testing No. 123, Jakarta" \--city "Jakarta" \--zip "12345"
Flags
-a, --help
Update organization address.
-c, --help
Update city name.
-d, --help
Update organization description.
-h, --help
Help for the organization edit subcommand.
-p, --help
Update business phone number.
-r, --help
Update region or province.
-z, --help
Update postal or ZIP code.
This command supports to the Global Flags section for details.
Last updated
