🌐
HTTP
Blueprint nodes for http operations.
8 nodesURL Encode
PurePercent-encodes a string so it is safe to use as a URL query parameter or form value.
UrlEncodeURL Decode
PureDecodes a percent-encoded string back to its original form.
UrlDecodeBuild Query String
PureBuilds a URL query string from a map of parameter names and values, auto-encoding all keys and values.
BuildQueryStringParse Query String
PureParses a URL query string into a map of decoded key-value pairs.
ParseQueryStringIs HTTP Success Code
PureReturns true if the HTTP status code is in the success range (200-299).
IsHttpSuccessCodeHTTP Status Description
PureReturns a human-readable description of a standard HTTP status code.
HttpStatusDescriptionHTTP GET
CallableAsync Blueprint node that performs an HTTP GET request and fires OnSuccess or OnFailure when complete.
HttpGetHTTP POST
CallableAsync Blueprint node that performs an HTTP POST request with a string body and fires OnSuccess or OnFailure when complet...
HttpPost