Replies: 1 comment
-
Hey @nudasilva You can set JSON bodies like this: req.setBody({
hello: "world"
}) If you need to set raw body instead, you can do: req.setBody("raw body", {raw: true}) PS: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In Postman, i can update request body to raw data, like this:
pm.request.body.update({
mode: 'raw',
raw: data
});
I would like how to do that in Bruno.
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions