Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hi there,I am trying to update an image in a landing page through REST API. My post request is successfully running but the image is not updating after approving the LP. Noticed Marketo is prepending the id element value with "mkto_gen_". Tried giving "mkto_gen_header-logo-image.json" but it is also...
Hi Kalpna,On the Marketo landing page, you should not add Marketo form using the Form embed code. This method limits Marketo features. Like Sanford said you should include Marketo form on the landing page using "Form Element"If you drop this element on the Landing page then the following popup will ...
Hi Anthony,Yes, Cookies are not sharable in between different domains. Marketo uses a tracking cookie names "_mkto_trk" to identify either lead in known or unknown. If the domain is changed then this cookie will be regenerated by the Maketo as per the new domain. Hence all leads will be considered ...
Hi Charles, Marketo does not provide hide previous question/next question functionality. However, this functionality can be implemented with the Javascript. You can add one more button (Next Question) using the "RichText Field" on the Marketo form and add javascript to hide previous and show the n...
Hi Pavel,You need to change popup form success submission code written in http://marketing.syneron-candela.com/rs/620-HCU-218/images/workshop-registration-popup.js. Following code is replacing forms HTML with the "Thank you message" formEl.innerHTML = (thankYouContainer.innerHTML = thankYouHTML, t...
Hi Dianna,You can use post /rest/v1/leads/push.json API. This API accepts input (Array[Lead], optional)programName (string, optional),programStatus (string, optional),You can pass Program Name and required program status to the API with all the input fields and lookupField (EmailID) to this API. Yo...
Hi Zachary Batastini,It is not a good option to keep Marketo JS on your server. It may result in non-rendering of the Marketo form. Moreover In some cases, If you keep Marketo JS on your server then that JS can again send a request to Marketo.com to load Form JS. Hence there would be two unnecessary...
Hi Mayank,Marketo API does not provide any endpoint to fetch form statistics. However, you can use Activities endpoint ( http://developers.marketo.com/rest-api/lead-database/activities/ ) to fetch "Fill out Form" activity of the leads and then pull statistics for a specific form from that respons...
Hi Ankit, You have to do it one by one using http://developers.marketo.com/rest-api/endpoint-reference/asset-endpoint-reference/#!/Programs/updateProgramUsingPOST endpoint. Marketo does not provide an API endpoint to update multiple programs metadata in a single request. Best Regards, Avtar Singh
Hi Daizen Ikehara,Marketo REST API does not provide an option to include activity attributes to the response. API provides a parameter (assetIds) in the request header to fetch activity details. However, through this parameter webhook "Pay Load" is not retrieved.Following is the endpoint for the sam...