Please add the option to send API body in and format we want. I need a big text box to send API body exactly as I type it. My only option currently is key pairs but this sends in a format not all endpoints accept.
Currently we’re locked into how Bricksforge wants to send it, but this isn’t always how the endpoint wants it.
For example, via Bricks Query Loop API the body is sent like this:
fields name,total_rating,summary,storyline,first_release_date;
where id = 23248;
If I attempt to do the same thing with BricksForge API, I get this:
{"fields":"name,total_rating,summary,storyline,first_release_date; ","where id =":"23248;"}
Which the endpoint I’m sending to, just doesn’t understand.