SOLVED

Mass update marketo forms using Postman

Go to solution
Nihal
Level 3

Hi,

 

We want to update our all marketo forms at once. We have come across this article​ about making this update in bulk via the API. For that we are using the Postman API platform. We connected Postman and our marketo instance, but the form is not getting updated. Please anybody who knows the process or step-by-step process please help us. 

1 ACCEPTED SOLUTION
Darshil_Shah1
Level 10 - Community Advisor + Adobe Champion

Cool- you can use the values parameter and pass the array of JSON objects that contain field attributes. This would of course only work for the Select type fields. Make sure you pass the Content as application/x-www-form-urlencoded

 

values=[{"label":"Select...","value":"","isDefault":true,"selected":true}, {"label":"MR","value":"MR"}, {"label":"MS","value":"MS"}, {"label":"MRS","value":"MRS"}, {"label":"DR","value":"DR"}, {"label":"PROF","value":"PROF"}]

 

Make sure to get the field's id by this GET fields endpoint, and use this id as the path parameter in your original update fields endpoint. Please share your complete request format along with the error message you're seeing in the response if you're not able to update the field.

View solution in original post

10 REPLIES 10