---
title: "Add Face"
method: POST
path: "/v1/videos/{video_id}/faces"
tags: ["Video Emotion API"]
---

# Add Face

`POST /v1/videos/{video_id}/faces`

Create a placeholder face on a video file. The new face has no detection
data — pair it with a speaker via Match Faces & Speakers when the AI
missed a person. Auto-allocates `face_id` from a monotonic counter
persisted on the doc (never reuses ids freed by delete). Cached CSV/PDF
reports are invalidated since the report enumerates faces.

Returns the auto-allocated `{face_id, name}` so the FE can append the
new tab without a re-read.

## Path parameters

- `video_id` string, required — The unique video ID.

## Response `200`

Successful Response

- AddFaceResponse — Response model after adding a placeholder face to a video. Attributes: id (str): Video ID the face was added to. face_id (int): Auto-allocated id (monotonic; never reuses ids freed by delete). name (str): Persisted name (trimmed; may be empty — FE renders "Face {id}" fallback).
  - `id` string, required
  - `face_id` integer, required
  - `name` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/imentiv/apis/welcome-to-imentiv-ai.md) · [All operations](https://skmtc.net/imentiv/apis/welcome-to-imentiv-ai/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/imentiv/welcome-to-imentiv-ai/revisions/74ceee4a5c98/schema)
