docs: clarify file_uuid vs identity_uuid across all API docs

This commit is contained in:
Accusys
2026-05-14 17:19:57 +08:00
parent 0da90630f5
commit 89c3b7df50
5 changed files with 16 additions and 23 deletions

View File

@@ -204,10 +204,10 @@ Green bbox: actual detection frames `thickness=4`, interpolated `thickness=1`.
**Usage:**
```bash
# Normal mode (default)
curl -o trace.mp4 "https://host/api/v1/file/{uuid}/trace/{id}/video?mode=normal"
curl -o trace.mp4 "https://host/api/v1/file/{file_uuid}/trace/{trace_id}/video?mode=normal"
# Debug mode
curl -o trace.mp4 "https://host/api/v1/file/{uuid}/trace/{id}/video?mode=debug"
curl -o trace.mp4 "https://host/api/v1/file/{file_uuid}/trace/{trace_id}/video?mode=debug"
```
---