# 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):

1. Run the following command in your terminal:

```
cldkctl organization edit
```

2. Search for and select the appropriate country from the list
3. Enter your organization’s phone number.
4. Select the appropriate sales representative from the list.

<figure><img src="/files/qfZSrC0CxcREZUXtWglD" alt=""><figcaption></figcaption></figure>

5. Type your city name.
6. Type your region or province name.
7. Enter the postal or ZIP code.

<figure><img src="/files/Ya68oxVGDrtNSvs9y2sQ" alt=""><figcaption></figcaption></figure>

8. Type the organization’s full address.
9. Type a short description of your organization.
10. Once all fields are completed, a confirmation prompt will appear. Press Y to save the changes or N to cancel.

<figure><img src="/files/2ibsoKgoqPqt6j7PcAov" alt=""><figcaption></figcaption></figure>

Option 2 — Using Flags (Non-Interactive Mode):

1. If you prefer to directly update specific fields, you can use command flags.

```
cldkctl organization edit --address "Jl. Testing No. 123456, DKI Jakarta"
```

2. 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"
```

<figure><img src="/files/stjbPUSO9ANGLn1xaJaX" alt=""><figcaption></figcaption></figure>

## Flags

{% hint style="info" %}
This command supports global flags. Refer to the Global Flags section for details
{% endhint %}

| Flag       | Description                                 |
| ---------- | ------------------------------------------- |
| -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.                  |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.cloudeka.ai/cloudeka-api-list/command-reference/cldkctl-organization/edit.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
