Sign Up
Loading...

Forwarding POST data to a GET request and filling a form

Asked by pylon on October 16, 2025

I want Site A to POST to Twidget, Twidget to extract a value and immediately forward it via a GET request so that a form on the receiving page is populated. Is this possible?


Answered by Twidget

Create a POST endpoint in Twidget that accepts the request body. Add a "Send HTTP Request" command to forward the extracted value to the target API (via GET or other method). The receiving page can then consume the GET response to populate the form.

Related Questions