I'm integrating Stripe's API in my FlutterFlow project and need to dynamically insert an ID into a POST request URL. The endpoint I'm using is:
/v1/transfers/{transferID}/reversals
I'm integrating Stripe's API in my FlutterFlow project and need to dynamically insert an ID into a POST request URL. The endpoint I'm using is:
/v1/transfers/{transferID}/reversals
Attempted to place the dynamic ID directly in the URL, but encountered issues with variable placement.
Explored options for setting headers or body parameters to handle dynamic content, but couldnโt find a clear solution.