Delete one or more data sources

POST /source/delete


Description

The method removes one or more data sources from the specified group. JWT token in the header is required for access.


Request format

  • HTTP method: POST
  • URL: /source/delete
  • Content type: application/json
  • Authorization: required

Query Parameters

ParameterTypePassed InRequiredDescription
tokenstringHeaderUser’s JWT token

Request Body (JSON)

FieldTypeRequiredDescription
tokenstringUser JWT token
group_idstringGroup identifier
source_idstring[]List of source identifiers

Example Request (cURL)

curl -X POST "https://api.neuro-vision.ru/v1/source/delete" 
  -H "Content-Type: application/json" 
  -H "Authorization: Bearer jwt.temporary.token" 
  -d '{
    "token": "jwt.temporary.token",
    "group_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "source_id": [
      "c2a61a30-8986-11ea-98f0-de0b10ae4112",
      "a6cf892e-88e7-49be-9811-2ceab7b77cda"
    ]
  }'

Example Answers

Success (200 OK)
{
  "code": 0,
  "message": "source deleted",
  "status": "ok"
}
Error (400 Bad Request)
{
  "message": "invalid schema",
  "status": "error"
}