Plugin API calls: body type = raw problem with form-data

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
postman

But if i use the same config in a bubble API call with body type = Raw, it did’t work:
body type raw

Error: the “content” is not identified as form-data

Why?

The problem was the “new line” implementation:
Postman uses CR LF (characters 0D 0A) for a new line in the body: this works
Bubble uses only LF-character: this won’t work