Jici
10
This is not easy because if you use parameters, Bubble will encode them as JSON even if you set a content-type header (I’ve reported this issue, but they closed the request without fixing this). However, if you select queryst checkbox for all parameters, bubble will overwrite header (but send the parameters as querystring, that not all API that will accept to use querystring like url encoded form)
So you can delete parameters and use body like
key=value&key2_value and this will work.
If you have multiple line_items and need to dynamically change the # of line_items possible, I suggest to use this plugin: JSON Serialize to URL query Plugin | Bubble that was made for that (Stripe in mind) that will convert the JSON payload to the url encoded version.