Certification Aid uses Marketing Cloud Connect and wants to create a lead capture form on a landing page. When a customer submits the form, a Lead record should be created in Salesforce. Which scripting language can be used for this? Choose 2.
To create a lead capture form on a landing page and create a Lead record in Salesforce, you can use either AMPscript or SSJS. AMPscript can be used for interacting with Salesforce, and SSJS can handle form processing. Alternatively, SSJS can handle the entire process, including creating the Salesforce record.
AMPscript and SSJS Combination: You can use AMPscript to interact with Salesforce APIs to create records and SSJS for form handling.
SSJS for Full Functionality: SSJS can handle both the form submission and the interaction with Salesforce to create Lead records.
: Salesforce AMPscript and SSJS Integration
A developer identified a use case where a triggeredsend of an email is needed. The developer already successfully set up authentication with a Client ID and Client Secret has used them in several REST calls. When the REST call is made, a "401 Unauthorized" error is returned. What is the first thing the developer should check?
A '401 Unauthorized' error typically indicates an issue with authentication or permissions. Since the Client ID and Client Secret have been successfully used in other REST calls, the most likely cause is insufficient permissions for sending emails.
Check Send Permissions: Ensure that the appropriate permissions for sending emails have been granted to the Client ID and Client Secret in the Installed Packages. Without these permissions, the API call will fail with a 401 error.
: Salesforce Installed Packages and Permissions
Certification Aid sends an email to a newly imported List with Subscribers who have no associated Subscriber Key. Which value will become the Contact Key? Choose 1.
When an email is sent to a list where subscribers have no associated Subscriber Key, Marketing Cloud will use the Email Address as the Contact Key by default. This ensures that each subscriber can still be uniquely identified even if they do not have a predefined Subscriber Key.
: Salesforce Subscriber Key Concepts
A developer wants to retrieve all recordsin the OrderDetails data extension which are associated with a particular customer.
Which two AMPscript functions would return a suitable rowset?
Choose 2 answers
To retrieve multiple records associated with a particular customer from the OrderDetails data extension, the LookupRows and LookupOrderedRows functions are suitable. These functions return a rowset containing the records that match the specified criteria.
LookupRows: Retrieves a rowset of records based on specified criteria.
Example:
ampscript
Copy code
SET @rows = LookupRows('OrderDetails', 'CustomerID', @customerID)
LookupOrderedRows: Retrieves a rowset of records based on specified criteria and allows for sorting.
Example:
SET @rows = LookupOrderedRows('OrderDetails', 0, 'OrderDate DESC', 'CustomerID', @customerID)
: Salesforce AMPscript LookupRows
Northtrn Trail Outfitters mistakenly synced the User_Salesforce object which added to their billable contact count.
What should be recommended to remove these contacts'
To remove contacts mistakenly synced from the User_Salesforce object, the recommended approach is to put the synced records into a sendable data extension and use Contact Delete (C). This method allows for the systematic deletion of these contacts from the All Contacts table without affecting other data.
Salesforce Marketing Cloud Contact Delete
Managing Contacts in Marketing Cloud
Emma Edwards
5 days agoStephanie Rodriguez
19 days agoMargaret Moore
1 month agoKevin Scott
2 months agoRobert Turner
2 months agoLinda Morris
3 months agoAmanda Parker
3 months agoMichelle Howard
3 months agoLisa Rodriguez
3 months agoEric Howard
3 months agoKimberly Wright
2 months agoDavid Clark
2 months agoMartha
4 months agoPedro
4 months agoWade
4 months agoOlga
4 months agoKimbery
5 months agoKrissy
5 months agoAmber
5 months agoSherell
5 months agoHaydee
6 months agoTomas
6 months agoStephaine
6 months agoCherilyn
6 months agoLavonna
7 months agoKip
7 months agoKaitlyn
7 months agoSuzi
7 months agoFernanda
8 months agoEun
8 months ago