Salesforce Marketing Cloud · Example Payload

Salesforce Marketing Cloud Createjourney Example

AutomationCustomer JourneyDigital MarketingEmailMarketingPersonalization

Salesforce Marketing Cloud Createjourney Example is an example object payload from Salesforce Marketing Cloud, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "createJourney",
  "method": "POST",
  "path": "/interaction/v1/interactions",
  "summary": "Salesforce Marketing Cloud Create a Journey",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "Welcome Journey",
        "description": "Onboarding journey for new subscribers",
        "key": "welcome-journey-001",
        "workflowApiVersion": 1.0,
        "triggers": [
          {
            "key": "event-trigger",
            "name": "api-event",
            "type": "APIEvent",
            "eventDefinitionKey": "APIEvent-welcome"
          }
        ],
        "activities": [
          {
            "key": "send-welcome-email",
            "name": "Send Welcome Email",
            "type": "EMAILV2",
            "configurationArguments": {
              "triggeredSend": {
                "emailId": 12345
              }
            }
          }
        ]
      }
    }
  ],
  "responseExamples": []
}