request: get

This block is part of the webhooks group and was last modified in core v15.0.0.

request: get v12.1.6 Updated v15.0.0

Performs an HTTP GET request to retrieve data from the specified URL. Returns the response as a string value.

In pins 11 + flow
  • flow
    flow
  • URL required
    value
  • Auth. header
    value

    Hidden when unused

  • Query String
    object

    Hidden when unused

  • headers
    object

    Hidden when unused

  • skip ssl
    condition

    true will skip SSL verification • Hidden when unused

  • include token v12.1.6
    condition

    true will include current users access token in header, to support internal RUAL endpoints requests • Hidden when unused

  • timeout v14.0.1
    number

    Overwrites the default timeout. Time in seconds. • Hidden when unused

  • retry v14.0.4
    condition

    Enable automatic retry on failure. Uses exponential backoff. • Hidden when unused

    Default false

  • retry count v14.0.4
    number

    Maximum number of retry attempts. Default is 3. • Hidden when unused

    Default 3

  • retry delay v14.0.4
    number

    Initial delay between retries in seconds. Uses exponential backoff (delay doubles each retry). • Hidden when unused

    Default 1

  • signing key v15.0.0
    value

    When set, signs the request with HMAC-SHA256 for RUAL-internal APIs (e.g. the mssgs backend): adds X-Mssgs-Timestamp (Unix seconds) and X-Mssgs-Signature: sha256=<hex> computed over timestamp\nmethod\nrequest URI\nbody. • Hidden when unused

Out pins 3 + flow
  • flow
    flow
  • code
    number
  • response
    value
  • headers
    object

    The replied headers of the request

request
http get

A typical wiring for Request: GET: branch feeds the flow pin; dynamic value feeds the url pin; the response out pin feeds parse; the flow out pin feeds branch.

Studio canvas example for the Request: GET block: typical wiring for Request: GET.

Commonly used with

In production blueprints, this block is most often wired together with:

  • branch: wired in both directions with this block.
  • parse: this block feeds into it. Converts a JSON in text format to a data structure that can be used inside functions.
  • ===: this block feeds into it. returns true if the two values are equal. Compares any type: numbers by value across int/float, strings and booleans strictly, objects and arrays deeply. There is no string/number coercion, so &quot;1&quot; does not equal 1.
  • dynamic value: feeds into this block. Returns the provided value with support for dynamic inpins using {name:type} placeholders — the pin's name first, then its type, e.g. {guid:value}.
  • set: this block feeds into it. Set key to hold the string value. If key already holds a value, it is overwritten, regardless of its type.
  • reply in JSON: this block feeds into it. Reply to any httpconnection as JSON body.

Version history

Introduced in v12.1.6.

Last modified in v15.0.0.

v14.0.4 This block or one of its pins was updated in v14.0.4, click here to see the release notes. v14.0.1 This block or one of its pins was updated in v14.0.1, click here to see the release notes. v13.0.7 This block or one of its pins was updated in v13.0.7, click here to see the release notes.
Back to webhooks Return to the main group to view all sub-groups Back to webhooks Return to the group to view all blocks within this group