JourneyActivity

An activity within a journey. Activities represent the actions performed on contacts, such as sending emails, waiting, or making decisions.

AutomationCustomer JourneyDigital MarketingEmailMarketingPersonalization

Properties

Name Type Description
key string Unique key for the activity within the journey
name string Display name of the activity
type string Type of activity
configurationArguments object Activity-specific configuration
outcomes array Possible outcomes of the activity leading to next steps
View JSON Schema on GitHub

JSON Schema

salesforce-marketing-cloud-journeyactivity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JourneyActivity",
  "title": "JourneyActivity",
  "type": "object",
  "description": "An activity within a journey. Activities represent the actions performed on contacts, such as sending emails, waiting, or making decisions.",
  "properties": {
    "key": {
      "type": "string",
      "description": "Unique key for the activity within the journey",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "Display name of the activity",
      "example": "Example Title"
    },
    "type": {
      "type": "string",
      "description": "Type of activity",
      "enum": [
        "EMAILV2",
        "SMSSYNC",
        "PUSHNOTIFICATION",
        "WAIT",
        "RANDOM_SPLIT",
        "ENGAGEMENT_SPLIT",
        "DECISION_SPLIT",
        "JOIN",
        "DATAEXTENSIONUPDATE",
        "REST",
        "CUSTOM"
      ],
      "example": "EMAILV2"
    },
    "configurationArguments": {
      "type": "object",
      "description": "Activity-specific configuration",
      "example": "example_value"
    },
    "outcomes": {
      "type": "array",
      "description": "Possible outcomes of the activity leading to next steps",
      "items": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string"
          },
          "next": {
            "type": "string",
            "description": "Key of the next activity in the journey"
          }
        }
      },
      "example": []
    }
  },
  "required": [
    "key",
    "type"
  ]
}