requests Action
Sends concurrent requests. Can be configured either by an inline JSON template or by referencing a JSON template in the src attribute.
The result of executing the template, whether given inline or referenced, must be a JSON object with the a property for each request ID with a JSON object like defined for the request action as its value.
Example: requests with inline JSON
<requests>
{
"main":{
"url":"http://example.com",
"method":"GET",
…
},
"foo":{
"url":"http://example.com",
"method":"POST",
…
},
"bar":{
…
}
}
</requests>Note: An id property in the JSON request configuration will be ignored:
Example: requests with referenced resource
with requests.json:
Example: requests with variable
See also
requestaction (reference)
Last updated
Was this helpful?