v1

latestOpenAPI 3.0.32026-07-26134195287.9 KB
People

Create a Person of Interest

Creates a Person of Interest for an organization using a specified base64 encoded string of face image and label.

post/cameras/v1/people/person_of_interest

Request body

base64_imagestring required

The base64 encoded string of the face image of the Person of Interest.

labelstring required

The name/label of the Person of Interest.

Response

OK

createdinteger

The timestamp when the Person of Interest was created. Formatted as a Unix timestamp in seconds.

labelstring

The name/label of the Person of Interest.

last_seeninteger

The timestamp when the Person of Interest was last seen. Formatted as a Unix timestamp in seconds.

person_idstring uuid

The unique identifier of the Person of Interest.

Example response

{
  "created": 1597821953,
  "label": "Steve Ponting",
  "last_seen": 1597946234,
  "person_id": "0a5b38d4-0308-4274-99b3-2b2f40d40deb"
}