Update HTTP REST API

2025-08-14 20:02:34 -05:00
parent b0532d9171
commit 5e0a6f12ee

@@ -301,7 +301,7 @@ curl -u USER:PASS -X POST \
## 🖥️ Example Usage with curl
### 1 Hash your password
### Hash your password
The API requires the password to be hashed with **BLAKE2b-384** before sending.
Example in Linux/macOS (requires `b2sum` from coreutils):
@@ -315,7 +315,7 @@ import hashlib
print(hashlib.blake2b(b"mypassword", digest_size=48).hexdigest())
```
### 2 Make an authenticated request
### Make an authenticated request
Example: List directory items in `/myfolder`
```bash