Set Form Data
On this page
Note: the form data of GET, HEAD, and OPTIONS requests will be ignored by default.
request:
formData:
key: value
You can set multiple values
request:
formData:
name: Abhimanyu
username: abhimanyu003
Example
name: Set Form Data
stages:
- name: request with form data
request:
url: "https://httpbin.org/post"
method: POST
formData:
name: abhimanyu003
url: https://github.com/abhimanyu003