MCSA guy who likes to hang out in the community going through the people's opinions, thoughts about the product and also answering questions/issues for fellow Marketo users. Have built few custom connectors for integrating the Marketo with other Adobe Marketing tools like Analytics, AEM, Target for extending Marketo's functionality. Have extensively worked on Marketo APIs along with the org level Marketo setup. Let's connect for a discussion on anything revolving around MarTech. ;)
Check if the field is not read-only for the marketo sync users WITHIN SFDC using the security rules. As in that case the field would not be updated in sfdc from marketo-sfdc sync.
You could re-create the deleted record in marketo by making use of an Apex callout (you could use Push Lead endpoint) from SFDC to the Marketo (but you should be careful while usin...
I got it from this official documentation where in it clearly states that URL field can store protocol as well. I am sure that you are right as I might have been seeing the wrong d...
If you wish to store only urls in this custom field then I would suggest using URL datatype as with the URL datatype you may store the protocol and use the token for same without p...
The only limitation in syncing the 2nd level object would be the in-availabilty to use in the velocity script. If you want to use the link from the CO then you can maybe copy it in...
myForm.addHiddenFields({
//Sample example for adding the hidden field
"Email":"test@example.com",
"FirstName":"John",
"LastName":"Doe"
});I see you haven't put the quotes to y...