Event Properties
| Field | Value |
|---|---|
event | "interaction.renamed" |
confidential | boolean |
payload | object |
- Public Payload
- Confidential Payload
| Field | Type | Description |
|---|---|---|
interactionId | string | ID of the renamed interaction |
Example
{
"event": "interaction.renamed",
"confidential": false,
"payload": {
"interactionId": "interaction_12345"
}
}
| Field | Type | Description |
|---|---|---|
interactionId | string | ID of the renamed interaction |
title | string | New title for the interaction |
Example
{
"event": "interaction.renamed",
"confidential": true,
"payload": {
"interactionId": "interaction_12345",
"title": "Follow-up visit"
}
}