Hello,
I’m working with Dynamics 365 Customer Insights / Marketing forms and noticed the embedded forms submit to a public endpoint like:
https://<org>.dynamics.com/api/v1.0/orgs/<orgid>/landingpageforms/forms/<formid>
From the browser network traffic, it appears the form is submitted directly via JavaScript.
Is it officially supported to submit these forms from a pure backend process (server-side integration, middleware, ETL job, webhook, etc.) without rendering the webpage/UI?
Example:
await fetch(formApiUrl, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ firstname: "John", email: "john@example.com" }) });
Or are these endpoints intended only for browser-based submissions with frontend validation/session handling?
If unsupported, what is the recommended Microsoft approach for backend form submission?

Report
All responses (
Answers (