Skip to main content
POST
/
api
/
v1
/
tester
/
people_assets
Error
A valid request URL is required to generate request examples
{
  "id": 1,
  "name": "Jane Doe",
  "employee_id": "EMP001",
  "kind": "staff",
  "company": null,
  "email": "jane@example.com"
}

Authorizations

Authorization
string
header
required

Device-specific API token generated from the Tester device's edit page. Each token is unique to a Tester device and scopes all operations to that device's brand.

Body

application/json
name
string
required

Full name of the person

kind
enum<string>
required

staff or visitor

Available options:
staff,
visitor
employee_id
string

Unique employee identifier within the brand (required if kind is staff)

company
string

Company name (typically used for visitors)

email
string<email>

Email address

Response

People asset created

id
integer
name
string
employee_id
string | null
kind
enum<string>
Available options:
staff,
visitor
company
string | null
email
string | null