Person Properties
Create multiple new person properties
POST
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json · object[]
The name of the property
Example:
"Company Size"
The type of the property
Available options:
STRING
, NUMBER
, DATETIME
, BOOLEAN
, SINGLE_SELECT
, MULTI_SELECT
, LOCATION
Example:
"SINGLE_SELECT"
Options for a SINGLE_SELECT
or MULTI_SELECT
property. Errors if passed for other property types
Input object for adding a property option to a SINGLE_SELECT
or MULTI_SELECT
property
Example:
[
{
"name": "SMB (1 - 100 employees)",
"color": "GREEN"
},
{
"name": "Mid Market (101 - 2000 employees)",
"color": "YELLOW"
},
{
"name": "Enterprise (2000+ employees)",
"color": "BLUE"
}
]
Whether the property is unique across all people. Maximum of 10 across a workspace
Example:
false
Whether the property is PHI (Protected health information)
Example:
false
Whether the property is PII (Personally Identifiable Information)
Example:
false