# Users

Users are individuals or organizations that utilize the DÆTA network for their storage needs.

> **`User Interactions`**

{% code title="graph TD" %}

```
graph TD
    A[User] -->|Uploads Data| B(DÆTA Client)
    A -->|Retrieves Data| B
    A -->|Manages Account| C[Web Interface]
    A -->|Monitors Usage| C
    B -->|Interacts with| D[DÆTA Network]
    C -->|Communicates with| D
```

{% endcode %}

> **`User Capabillities`**

{% tabs %}
{% tab title="Data Upload" %}
`Description: Securely store files on the network.`

`Example:`

`daeta-client upload`&#x20;

`~/documents/report.pdf`

`/daeta/docs/`
{% endtab %}

{% tab title="Data Retrieval" %}
`Description: Access stored files from any device.`

`Example:`

`daeta-client download`&#x20;

`/daeta/docs/report.pdf`

`~/downloads/`
{% endtab %}

{% tab title="Access Management" %}
`Description: Control who can access shared files.`

`Example:`

`daeta-client share`&#x20;

`/daeta/docs/report.pdf`

`--permissions read --expiry 7d`
{% endtab %}

{% tab title="Usage Monitoring" %}
`Description: Track storage usage and costs.`

`Example:`

`daeta-client status`
{% endtab %}
{% endtabs %}
