Docs: Update error message example in HTTP API reference (#12984)

### What problem does this PR solve?

Changed the error message example in the HTTP API reference
documentation from a duplicate dataset name error to a validation error
about string length requirements. This update reflects the current
behavior of the API when validation fails.

### Type of change

- [x] Documentation Update
This commit is contained in:
Liu An
2026-02-04 15:42:53 +08:00
committed by GitHub
parent 6f31c5fed2
commit 0470fc59b1

View File

@ -621,7 +621,7 @@ Failure:
```json ```json
{ {
"code": 101, "code": 101,
"message": "Dataset name 'RAGFlow example' already exists" "message": "Field: <name> - Message: <String should have at least 1 character> - Value: <>"
} }
``` ```