v51

latestOpenAPI 3.0.1raw.githubusercontent.com2026-08-0118684573.2 KB
Actor Properties

Registering an Actor Property Name

Registers a new actor property name for this project. Once registered, the property can be set on any App User or Public Link within the project via PATCH.

Property names follow the same rules as Entity property names: they must be non-empty, may contain letters, digits, hyphens, and underscores, and the name displayName (case-insensitive) is reserved.

Requires actor_property.update permission.

post/v1/projects/{projectId}/actor-properties

Path parameters

projectIdnumber required

The numeric ID of the Project

Request body

namestring required

The name of the property to register.

Example request

{
  "name": "region"
}

Response

OK

successboolean required

Example response

{
  "success": true
}