Delete multiple Time Profile items by link_id
Delete multiple Time Profile items by link_id param. This request is used by Link management system to remove Time Profiles from panel.
- application/json
Request Body
- link_ids uuid[]array of ids from Link 
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
- Deleted
- Not found
Schema
- result object[]- resulting array of ids link_id uuid- Unique entity set by the server to bind some parameters with each other. By default return null value success boolean- status of operation extended_info string- Possible values: [ - created,- updated,- deleted,- entity_not_found,- number_taken_by_another_identifier,- bound_time_profile_doesnt_exist,- face_id_not_supported,- number_of_face_identifiers_exceeded,- number_of_identifiers_exceeded]- Entity state information result 
{
  "result": [
    {
      "link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
      "success": true,
      "extended_info": "created"
    }
  ]
}
{
  "result": [
    {
      "link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
      "success": true,
      "extended_info": "deleted"
    }
  ]
}
{
  "result": [
    {
      "link_id": "91c615e3-1040-4815-8ecb-039a18b756b5",
      "success": false,
      "extended_info": "entity_not_found"
    }
  ]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- error stringerror type/info 
{
  "error": "Wrong JSON body"
}
{
  "error": "Wrong JSON body"
}
Unauthorized request. Log In
- application/json
- Schema
- Example (from schema)
- Log In
Schema
- error stringerror message 
{
  "error": "Log In"
}
{
  "error": "Log In"
}
Loading...