I’m currently utilizing Pipedream as my bridge URL to connect my API and fetch values on the callback URL. While I can see the values being returned in Pipedream, I’m encountering an issue when trying to retrieve the response body from Pipedream to my API.
Despite receiving a success response in Postman, I’m unable to access the response body. Could someone please advise on the best approach to fetch the response body from Pipedream and integrate it into my API?
How is Pipedream returning the callback values to your API? Is Pipedream issuing a new HTTP request to your API or is it responding and returning the callback values in the JSON body?
Could you share an example of a flow of the routes, e.g.
Request flow:
Your API —HTTP POST—> Pipedream —HTTP POST—> 3rd party API
Your API initiates an HTTP POST request to Pipedream.
Pipedream then forwards this request as an HTTP POST to a third-party API.
Response flow:
3rd party API —HTTP response body—> Pipedream —HTTP response body—> Your API
The third-party API sends the HTTP response (including the response body) back to Pipedream.
Pipedream processes this response and then forwards the HTTP response body to your API.