Cameron Robert
Cameron Robert
  • 126
  • 685 195
SSJS HTTP POST in Salesforce Marketing Cloud
Cameron Robert steps through how to build a POST request with headers and a payload, post it to an endpoint, and then retrieve the response using Server Side Javascript (SSJS) in Salesforce Marketing Cloud.
Key Moments:
0:00 - Introduction
0:18 - SSJS HTTP POST Documentation
1:08 - Example: Use HTTP POST to the Marketing Cloud Rest API
6:00 - Use Stringify to get the Response
8:02 - JSONParse the Response value
9:17 - Summary
📄Documentation:
• SSJS HTTP.Post: developer.salesforce.com/docs/marketing/marketing-cloud/guide/ssjs_httpPost.html
• Marketing Cloud Get Access Token API: developer.salesforce.com/docs/marketing/marketing-cloud/references/mc_rest_auth?meta=getAccessToken
📄Trailhead: trailhead.salesforce.com/content/learn/modules/marketing-cloud-programmatic-languages/learn-about-server-side-javascript
Contact:
www.linkedin.com/in/camrobert/
www.cameronrobert.com.au/
AusCamRobert
Переглядів: 143

Відео

SSJS HTTP GET in Salesforce Marketing Cloud
Переглядів 39721 годину тому
Cameron Robert steps through how to return data from an endpoint using the HTTP.GET function using Server Side Javascript (SSJS) in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:14 - SSJS HTTP GET Documentation 1:45 - Example: Use HTTP GET to get data from an endpoint 5:25 - Return the Response.Content of the GET Request 6:31 - JSONParse the Response.Content value 9:50 - Summar...
SSJS Rows.Remove in Salesforce Marketing Cloud
Переглядів 21214 днів тому
Cameron Robert shows how to use the Data Extension Rows.Remove function in Server Side Javascript (SSJS) to delete rows of data from a Data Extension using a filter in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:13 - Rows.Remove Documentation 0:58 - Example: How to use the SSJS Data Extension Rows.Remove Function 3:26 - Example: Multiple criteria in the Rows.Remove Function 4...
SSJS Rows.Retrieve in Salesforce Marketing Cloud
Переглядів 197Місяць тому
Cameron Robert shows how to use the Data Extension Rows.Retrieve function in Server Side Javascript (SSJS) to retrieve rows of data from a Data Extension using a filter in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:13 - Rows.Retrieve Documentation 1:48 - Example: How to use the SSJS Data Extension Rows.Retrieve Function 3:38 - Example: Add a simple filter to the Rows.Retriev...
SSJS Rows.Add in Salesforce Marketing Cloud
Переглядів 232Місяць тому
Cameron Robert shows how to use the Data Extension Rows.Add function in Server Side Javascript (SSJS) to add rows of data to a Data Extension in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:13 - Rows.Add Documentation 1:27 - Example: How to use the SSJS Data Extension Rows.Add Function 3:49 - Example: Add multiple rows of data using Rows.Add 4:48 - Example: Add multiple dynami...
SSJS Rows.Lookup in Salesforce Marketing Cloud
Переглядів 258Місяць тому
Cameron Robert shows how to use the Data Extension Rows.Lookup function in Server Side Javascript (SSJS) to return rows of data from a Data Extension in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:14 - Rows.Lookup Documentation 1:00 - Example: How to use the SSJS Data Extension Rows.Lookup Function 4:17 - Example: Return a single value using Rows.Lookup 5:14 - Summary 📄Docume...
SSJS LookupRows in Salesforce Marketing Cloud
Переглядів 376Місяць тому
Cameron Robert shows how to use the LookupRows function in Server Side Javascript (SSJS) to return rows of data from a Data Extension in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:15 - Lookup Documentation 1:01 - Example: How to use the SSJS LookupRows Function 4:54 - Example: LookupRows with multiple rows retuned 7:05 - View the LookupRows JSON value 8:18 - Summary 📄Documen...
SSJS Lookup Data Extension in Salesforce Marketing Cloud
Переглядів 4272 місяці тому
Cameron Robert shows how to use the Lookup function in Server Side Javascript (SSJS) to retrieve values from a Data Extension in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:12 - Lookup Documentation 1:01 - Example: How to use the SSJS Lookup Function 3:57 - Summary 📄Documentation: • SSJS Data Extension Lookup: developer.salesforce.com/docs/marketing/marketing-cloud/guide/ssjs...
SSJS Do While Loops in Salesforce Marketing Cloud
Переглядів 3633 місяці тому
Cameron Robert talks through the Do While Loops function using Server Side Javascript (SSJS) in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:14 - While Loop Documentation (W3Schools) 1:30 - SSJS Do While Loop syntax 4:03 - Programmatic Do While Example 8:59 - Summary 📄Documentation & Links: • While Loop (W3 Schools): www.w3schools.com/js/js_loop_while.asp • SSJS Syntax Guide: ...
SSJS For Loops in Salesforce Marketing Cloud
Переглядів 5364 місяці тому
Cameron Robert talks about one of his favourite subjects and demonstrates how to use For Loops using Server Side Javascript (SSJS) in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:10 - For Loop Documentation (W3Schools) 0:57 - SSJS For Loop syntax 2:40 - Using a For Loop with a JSON Object 5:42 - Address JSON values inside a For Loop 7:40 - Summary 📄Documentation & Links: • For...
SSJS Stringify Function in Salesforce Marketing Cloud
Переглядів 4884 місяці тому
Cameron Robert shows how to turn JSON objects into strings using the Server Side Javascript (SSJS) Platform.Function.Stringify() function in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:15 - Stringify function Documentation 0:47 - Platform.Function.Stringify function example 2:23 - Stringify Use Case: Save JSON into a Data Extension 5:03 - Summary 📄Documentation & Links: • Pla...
SSJS Get & Set AMPscript Values in Salesforce Marketing Cloud
Переглядів 6844 місяці тому
Cameron Robert shows how to use the Variable.GetValue() and Variable.SetValue() functions using Server Side Javascript (SSJS) to send variables to and from AMPscript in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:13 - GetValue and SetValue Documentation 1:45 - Variable.GetValue function example 4:38 - Variable.SetValue function example 6:59 - Summary 📄Documentation & Links: •...
SSJS ParseJSON Function in Salesforce Marketing Cloud
Переглядів 7844 місяці тому
Cameron Robert shows how to use the ParseJSON() and Platform.Function.ParseJSON() functions using Server Side Javascript (SSJS) in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:16 - ParseJSON function Documentation 1:14 - Platform.Function.ParseJSON function example 2:11 - ParseJSON Example 6:12 - Stringify Function Overview 6:35 - Summary 📄Documentation & Links: • Platform.Fun...
SSJS Write Function in Salesforce Marketing Cloud
Переглядів 8104 місяці тому
SSJS Write Function in Salesforce Marketing Cloud
Introduction to SSJS in Salesforce Marketing Cloud
Переглядів 3,4 тис.4 місяці тому
Introduction to SSJS in Salesforce Marketing Cloud
Sendable Data Extension Best Practices in Salesforce Marketing Cloud
Переглядів 1,4 тис.5 місяців тому
Sendable Data Extension Best Practices in Salesforce Marketing Cloud
How to learn Salesforce Marketing Cloud
Переглядів 9 тис.6 місяців тому
How to learn Salesforce Marketing Cloud
Importing Dates into Salesforce Marketing Cloud
Переглядів 1,4 тис.7 місяців тому
Importing Dates into Salesforce Marketing Cloud
Journey Data and Contact Data in Salesforce Marketing Cloud
Переглядів 3,5 тис.8 місяців тому
Journey Data and Contact Data in Salesforce Marketing Cloud
Create new Marketing Cloud API Requests in Postman
Переглядів 2,5 тис.8 місяців тому
Create new Marketing Cloud API Requests in Postman
Setup Postman to use with Salesforce Marketing Cloud REST APIs
Переглядів 5 тис.9 місяців тому
Setup Postman to use with Salesforce Marketing Cloud REST APIs
Marketing Cloud Lead Capture Ads into CRM
Переглядів 3 тис.9 місяців тому
Marketing Cloud Lead Capture Ads into CRM
Marketing Cloud TikTok Lead Capture Ads - Install & Setup
Переглядів 3,7 тис.10 місяців тому
Marketing Cloud TikTok Lead Capture Ads - Install & Setup
Use ChatGPT to practice SQL in Salesforce Marketing Cloud
Переглядів 3,1 тис.11 місяців тому
Use ChatGPT to practice SQL in Salesforce Marketing Cloud
Einstein Generative AI in Salesforce Marketing Cloud
Переглядів 8 тис.11 місяців тому
Einstein Generative AI in Salesforce Marketing Cloud
Introduction to SQL in Salesforce Marketing Cloud: Lesson 6 - Case Statements
Переглядів 1,6 тис.Рік тому
Introduction to SQL in Salesforce Marketing Cloud: Lesson 6 - Case Statements
Introduction to SQL in Salesforce Marketing Cloud: Lesson 5 - SQL Functions
Переглядів 2,1 тис.Рік тому
Introduction to SQL in Salesforce Marketing Cloud: Lesson 5 - SQL Functions
Introduction to SQL in Salesforce Marketing Cloud: Lesson 4 - SQL Aggregate and Group By
Переглядів 3 тис.Рік тому
Introduction to SQL in Salesforce Marketing Cloud: Lesson 4 - SQL Aggregate and Group By
Introduction to SQL in Salesforce Marketing Cloud: Lesson 3 - JOINs in SQL
Переглядів 4,9 тис.Рік тому
Introduction to SQL in Salesforce Marketing Cloud: Lesson 3 - JOINs in SQL
Introduction to SQL in Salesforce Marketing Cloud: Lesson 2 - Syntax and Basic SELECT Queries
Переглядів 7 тис.Рік тому
Introduction to SQL in Salesforce Marketing Cloud: Lesson 2 - Syntax and Basic SELECT Queries