HTTP
HTTP request valves.
Requires module HttpClient to be configured and deployed.
Valves are NOT part of the Item iteration API. To create Items from response use ItemCreateValve.
Common configuration
These configuration properties applies to all HTTP valves.
url
Request URL.
N/A
destination
HttpClient instance to use.
"default"
headers
JSON map of request headers.
{}
parameters
JSON map of request parameters. Only applicable if "content_type"
is "application/x-www-form-urlencoded"
{}
content
Body as a JSON object. Only applicable if "content_type"
is "application/json"
{}
Response
If request is successful (status 200) the response body and headers are set in the current flow state. If request fails, Pipe will fail with response text as reason.
headers
JSON map of response headers
body
Body as binary value.
Last updated