Error Report Interactions
Interaction Name | Description |
---|---|
error | Captures errors that occur on your site. |
Fields
Field | Details |
---|---|
attributes |
|
id |
|
name |
|
Error Report Event
event.target.dispatchEvent(
new CustomEvent('experience_interaction', {
bubbles: true,
composed: true,
detail: {
name: 'error',
id: 'error-id-1',
attributes: {
type: "api-error",
message: "503: service not available"
},
},
})
);