Events
Components creation
Triggered each time components are created.
{
eventType: "components.created",
data: {
components: [{
_fttdInternalComponentId, // Frontitude's internal id, can be helpful for debugging.
uniqueKey, // if a unique key isn't set, it will be auto-set with a temporary persistent unique id that starts with the 'frontitude-' prefix.
name,
value, // a string if the component is not pluralized, else, an object that represents plurals: { zero?, one?, two?, few?, many?, other? }.
tags, // string array
status, // "New"/"Draft"/"Review"/"Final"
note,
frontitudeLink
}]
}
}Components deletion
Triggered each time components are deleted.
Components value change
Triggered each time components’ values are changed (including plurals) in any language (source language or translations).
Components status change
Triggered each time components' statuses are changed in any language (source language or translations).
Components unique key change
Triggered each time components' unique keys are changed.
Last updated
Was this helpful?