You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: send request as list
request:
...
body: '{{ item }}'
...
with_items:
- '{"a":"b","c":{ "d":"e","f":"g"}}
- '{"x":"y"}'
-....
OR with "with_items_from_csv" as in the documentation, you can find the example file in "example/fixtures/transactions.csv". Actually the important thing here is that you need to name the dataset somehow. and add the lines. In the example it is "txn" and that's why this is the way how we can use it: body: '{{ item.txn }}' that say "please itearet through the items in txn dataset" (something like that :D).
The benchmark.yaml file contains all the examples.
Could I have an example of how to send json as a body payload please?
The text was updated successfully, but these errors were encountered: