Use the feed of changes to:
- Export a paper trail to know which changes made the biggest impact.
- Ensure that your most important Experiences stay static. Do this by listing all changes for a specific Experience and make sure the set of changes is empty
- Audit an issue with the delivery of an Experience.
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 |
experience_id | ID | The ID of the parent model that this change represents. (a Tour when model is a Step |
model_id | ID | The ID of the model that this change represents |
model_type | string | The type of the model that this change represents |
kind | string | The type of change this represents: One of: create, update, destroy, raw, partial, related, revert, or apply |
path | string | They keypath this change represents |
object | object | The underlying value of this change. It can be an object with scalar values (for a kind=create or kind=destroy) or values as a 2-item array of the [before, after] diff |
options | object | A hash of other information about this change. Values are a diff. |
Change “Diff item” Schema
Each value is a 2-item array[BEFORE, AFTER]. If the value changed from "silver" to "gold" then:
object:
List Changes
List all Changes.HTTP Request
| param | - | description |
|---|---|---|
limit | optional | Defaults to 50 with a maximum of 500 |
before | optional | Used when paginating, use directly from the cursor object from the previous response |
before | optional | Read as “created before” and can be given as a timestamp to get only limit items that were created before this time |
after | optional | Read as “created after” and can be given as a timestamp or ID to get only limit items that were created after this time |
filters | optional | An array of properties to filter Changes with; use this to fetch “all changes for a specific set of properties” |
model_kind | optional | A kind of model to fetch changes for. One of tour, survey, launcher, or tooltip. |
model_id | optional | The ID of the model to fetch changes for |
Examples
Only changes for the6f3c4232c712de665632a6d5 Tour
published_at property of any Experience
HTTP Response
Summary of Changes
Summary Schema
| Property | Type | Description |
|---|---|---|
model_id | ID | The ID of the model that this change represents |
path | string | They keypath this change represents |
kind | string | The type of change this represents: One of: create, update, destroy |
change_id | array | A 2-item array of the [before, after] diff of Screen Capture ID of this change. Note some changes are no represented visually and will have null value for the after value |
capture_id | array | A 2-item array of the [before, after] diff of Screen Capture ID of this change. Note some changes are no represented visually and will have null value for the after value |
object | object<ChangeUpdate> | A ChangeUpdate of properties that have changed for this model |
changes | array<ChangeUpdate> | An Array of ChangeUpdate items representing changes to child associated models (Steps, Buttons etc. |
Change update object Schema
| Property | Type | Description |
|---|---|---|
name | string | The name of the underlying property that changed |
description | string | A longer description of the underlying property |
value | object | The underlying value of this change. It can be an object with scalar values (for a kind=create or kind=destroy) or values as a 2-item array of the [before, after] diff |
Examples
Change Summary
List all Change SummariesHTTP Request
| param | - | description |
|---|---|---|
model_kind | required | A kind of model to fetch changes for. One of tour, survey, launcher, or tooltip. |
model_id | required | The ID of the model to fetch changes for |

