Schema
| Property | Type | Description |
|---|---|---|
id | ID | The Chameleon ID |
created_at | timestamp | When this happened or when this was added to the Database |
updated_at | timestamp | The last time any property was updated |
name | string | The name given by an administrator of Chameleon |
description | string | The display description |
kind | string | Type of record this property is associated with: One of profile, event, or company |
prop | string | The normalized property key |
integration | string | The source integration of this property |
last_seen_at | timestamp | The time when this property was last added to / removed from a User Profile. |
types | array | The identified type of property values seen (string, integer etc.) |
values | array | A sample of the most recent values seen for this property (most recent first). |
Listing Properties
Retrieve a complete (un-paginated) list of properties for the givenkind + integration.
HTTP Request
| param | - | description |
|---|---|---|
kind | required | Use a values of either profile or company |
integration | optional | Used to filter properties to only ones created by a specific integration. Omit for “all integrations”. |
order | optional | One of created_at or last_seen_at, ordered by most recent. Defaults to created_at. |
HTTP Response
Create a Property
HTTP Request
| param | - | type | description |
|---|---|---|---|
name | required | string | The name given by an administrator of Chameleon |
description | required | string | The display description |
kind | required | string | Type of record this property is associated with: One of profile, event, or company |
HTTP Response
Update a Property
HTTP Request
| param | type | description |
|---|---|---|
id | string | The ID of the Property |
name | string | The name given by an administrator of Chameleon |
description | string | The display description |

