When using the REST API to submit new ideas, provide option to suppress acknowledgement email
I am using the REST API to submit an idea but I don’t want to receive the acknowledgment mail. Please provide a way to avoid sending the acknowledgment mail while submitting an idea using rest apis.
Hi Vishal - we've forwarded your note to our support team to help you get this figured out. Our team will reach back out soon.
still not able to do that, I am still receiving the acknowledge mail, though I am using "disable_mailers"
Idea idea = new Idea();
idea.name = string.IsNullOrWhiteSpace(MessageTitle) ? "BlankTitle" : MessageTitle;
idea.description = string.IsNullOrWhiteSpace(Message) ? "<p>Blank Message</p>" : Message;
idea.visibility = "public";
idea.created_by_portal_user = Email;l;
idea.disable_mailers = true;
var response = await client.PostAsJsonAsync("https://keysight-benchvue.aha.io/api/v1/products/BVI/ideas", idea);