Delete Face Data (Internal)
POST/api/v1/ml/people/delete/internal
Delete Face Data - internal bulk deletion with date range support. This API will delete all Face Data associated with the assets provided. It will not delete the _filespin_fr_count field in Asset Metadata.
Either ids or date range must be provided. If both ids and date range are provided, both will be combined and FR data deleted for all matching assets.
Request JSON
{
"ids": [],
"start_time": "2025-05-07T00:00:00Z",
"end_time": "2025-07-19T23:59:59Z"
}
| Parameter | Type | Description |
|---|---|---|
ids | JSON | (Optional) List of asset ids to delete Face Recognition addon data. A maximum of 100 asset ids can be passed. |
start_time | string | (Optional) Asset upload time in ISO 8601 format, start of date range. end_time must be provided if this is present. |
end_time | string | (Optional) Asset upload time in ISO 8601 format, end of date range. start_time must be provided if this is present. Must not be greater than 31 days from start_time. |
Response
API responds with HTTP 202. Face Recognition data will usually be deleted completely from the system within a few seconds.
API Limits
A maximum of 500 ids can be sent per request.
Request
Responses
- 200
- 401
- 403
- 500
Successful operation
Unauthorized - Invalid or missing authentication
Forbidden - Insufficient permissions
Internal server error