> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Triggered Events # Type: Activation Object # Link: https://dev.wix.com/docs/api-reference/business-management/automations/triggers/triggered-events/activation-object.md ## Schema: ```json Type: Activation Object | type: Activation - name: id | type: string | description: Activation ID - name: automation | type: Automation | description: Activation automation - name: id | type: string | description: Automation ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number. This increments by 1 whenever the automation is updated. Specify the current revision number whenever updating an existing automation. - name: value | type: string | description: - name: createdBy | type: AuditInfo | description: Who created the automation. - name: createdDate | type: string | description: When the automation was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedBy | type: AuditInfo | description: Who last updated the automation. - name: updatedDate | type: string | description: When the automation was last updated. - name: name | type: string | description: Automation name as displayed on the user's site. - name: description | type: string | description: Automation description. - name: configuration | type: AutomationConfiguration | description: Automation configuration. - name: status | type: string | description: Status of the automation on the site. - name: trigger | type: Trigger | description: Trigger configuration. - name: rootActionIds | type: Array | description: Root action IDs. A root action is the first action that runs after the trigger occurs. Root actions run in parallel. > **Note**: You can currently only specify 1 root action. - name: actions | type: object | description: Actions the automation can execute, as `key:value` pairs. For the key, specify the action ID. The value must be an object structured as described below. - name: origin | type: string | description: How the automation was added to the user's site. enum: USER, APPLICATION, PREINSTALLED - name: settings | type: AutomationSettings | description: Automation settings. Applied only for pre-installed and application automations. Not applied to User origin automations - name: hidden | type: boolean | description: Whether the automation is hidden from users. Default: `false` - name: readonly | type: boolean | description: Whether the automation is read-only. When `true`, site owners can't modify the automation or any of its actions. When `false`, users can configure specific actions as skippable or read-only using `settings.actionSettings`. Default: `false`. > **Note**: Setting `readOnly` to `true` overrides `settings.actionSettings`. - name: disableDelete | type: boolean | description: Whether to disable the option to delete the automation from the site. Default: `false`. - name: disableStatusChange | type: boolean | description: Whether to disable the option to change the automation's `configuration.status`. Default: `false`. - name: actionSettings | type: ActionSettings | description: Automation action settings. - name: draftInfo | type: DraftInfo | description: When the automation is a draft, the draft details. - name: originalAutomationId | type: string | description: ID of the original automation. - name: archived | type: boolean | description: Whether the automation is archived. To archive an automation, set this to `true`. To restore an archived automation, set this to `false`. - name: autoArchivePolicy | type: AutoArchivePolicy | description: Auto archive policy - name: archiveDate | type: string | description: Date when to archive the automation If this date in the past, nothing will happen (automation will not go into archived state) If this date in the future, on this date the automation will be updated with archived = true and configuration.status = INACTIVE After this date the automation may be unarchived and archived again, this date will have no influence - name: activationInitiationSourceInfo | type: ActivationInitiationSourceInfo | description: Activation Initiation Source information - name: activationInitiationSource | type: string | description: The source type of this activation. enum: TRIGGER_PROVIDER_EVENT, MANUAL_ACTIVATION, RERUN_ACTIVATION - name: initiatorInfo | type: InitiatorInfo | description: Information about the user who initiated the activation. - name: initiatorUserId | type: string | description: The user ID of the initiator. - name: wixEmployee | type: boolean | description: Whether the initiating user is a Wix employee. ```