POST /source/groups
Description
The method returns a list of all user data source groups. JWT token is required in the header for access.
Request format
- HTTP method:
POST - URL:
/source/groups - Content Type:
application/json - Authorization: required
Query Parameters
| Parameter | Type | Where passed | Required | Description |
|---|---|---|---|---|
| token | string | Header | ✅ | User’s JWT token |
Example Request (cURL)
curl -X POST "https://api.neuro-vision.ru/v1/source/groups"
-H "Content-Type: application/json"
-H "Authorization: Bearer jwt.temporary.token" Example Answers
Success (200 OK)
[
{
"created": "2023-10-16T14:34:54.483Z",
"group_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"person_list_search": [
{
"id": "d995ca10-8292-11ea-ae65-3048e12b1113",
"on_failed": "",
"on_found": ""
}
]
}
] Error (401 Unauthorized)
{
"message": "access denied",
"status": "error"
}