Hello,
I have a private API to connect my bubble app to my other systems. API calls with body type = JSON are working well
I have a problem with a POST call and body type = Raw (I cannot use body type = form-data, because I need to use dynamic values)
I’ve tested the call with Postman echo:
Header:
Content-Type multipart/form-data; boundary=--------------------------831757819637405329882105
Success: the “content” is identified as from-data
But if i use the same config in a bubble API call with body type = Raw, it did’t work:
Error: the “content” is not identified as form-data
Why?