Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
In the "Email" area of the "Admin" section, are "From Email" and "From Label" user specific, but "Unsubscribe HTML","Unsubscribe Text","View as Web Page HTML", and "View as Web Page Text" global? I made a change to our "Unsubscribe HTML" and it seems to have changed for all users.
Hi All,We are still relatively new to Marketo and are looking to sync Cvent data. We currently have lead data updating from Cvent to Marketo, but Marketo data isn't updating in Cvent. I have read in different posts that this is just how the functionality works. It is very clearly labelled "Push API ...
That did it. Thank you for your help. Below is the working code snippet if (File.Exists(Path.Combine(folderName, fileName))) { //host of your marketo instance, https://XXX-XXX-XXX.mktorest.com var client = new RestClient(host); var r...
I still get the same error when I try thisif (File.Exists(Path.Combine(folderName, fileName))) { var client = new RestClient(host); var request = new RestRequest("/bulk/v1/leads.json?format=csv&access_token=" + getToken(), Method.POST); request...
Even when I update the code with line 9, I still get the same error.
I'm exploring Bulk Import via the REST API and can successfully post an import through Postman. When I try to use the code snippet from Postman, I get the following error:"{\"requestId\":\"1b0d#16875fb3c42\",\"success\":false,\"errors\":[{\"code\":\"1003\",\"message\":\"Empty file\"}]}" The code is ...