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
Example request
{
"name": "region"
}Response
OK
Example response
{
"success": true
}