method
"get"
, "post"
, "put"
, "patch"
, or "delete"
url
https://
or http://
body
method
is "get"
; format varies, see belowfiles
headers
verify
false
to disable SSL certificate verificationerror_on_5xx
true
to have 5xx HTTP response codes be considered action errorsbody
option.application/json
, and if the body
option is set to a JSON object or array, the request body will be automatically serialized to a JSON string, and the request will contain a Content-Type header set to application/json
.files
option is given, its contents will be evaluated for file generators, and the results will be used to construct a multipart/form-data
upload request, combining generated files with any key-value pairs found in the body
option.files
option is not given, and if the Content-Type header is set to application/x-www-form-urlencoded
, and if the body
option is set to a JSON object or array, the request body will be serialized to a form-encoded string.status
headers
body
body_base64
application/json
, the body
result value will be the result of parsing the response body for JSON.body
result value will be an UTF8 string, regardless of the response body's original encoding. To access the response body in its original encoding, use the body_base64
result value, passing it through the decode_base64 Liquid filter if necessary.error_on_5xx
option. When set to true
, this action will interpret any 5xx responses as an action error.