POST /source/update
Description
The method updates the parameters of an existing data source. JWT token is required in the header for access.
Request format
- HTTP method:
POST - URL:
/source/update - Content type:
application/json - Authorization: required
Query Parameters
| Parameter | Type | Where Passed | Required | Description |
|---|---|---|---|---|
| token | string | Header | ✅ | User’s JWT token |
Request Body (JSON)
| Field | Type | Required | Description |
|---|---|---|---|
| token | string | ✅ | User’s JWT token |
| source_id | string | ✅ | Data source identifier |
| group_id | string | ✅ | Group identifier |
| name | string | ❌ | New data source name |
| feature_check | string[] | ❌ | List of feature checks (e.g., “race”, “age”, …) |
| new_person_threshold | string | ❌ | New person detection threshold (e.g., “0.7”) |
| new_person_square_min | string | ❌ | Minimum face area |
| new_person_yaw_max | string | ❌ | Maximum face rotation angle on the YAW axis |
| new_person_pitch_max | number | ❌ | Maximum face rotation angle on the PITCH axis |
| person_list_add | string[] | ❌ | List of face identifiers to add |
Example Request (cURL)
curl -X POST "https://api.neuro-vision.ru/v1/source/update"
-H "Content-Type: application/json"
-H "Authorization: Bearer jwt.temporary.token"
-d '{
"token": "jwt.temporary.token",
"source_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"group_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Updated Source",
"feature_check": ["age", "race"],
"new_person_threshold": "0.8",
"new_person_square_min": "60",
"new_person_yaw_max": "1.3",
"new_person_pitch_max": 2,
"person_list_add": ["a2bf7811-1234-11ea-96e9-dba8e17ed531"]
}' Example Answers
Success (200 OK)
{
"code": 0,
"message": "source updated",
"status": "ok"
} Error (400 Bad Request)
{
"message": "invalid schema",
"status": "error"
}