Make an external HTTP GET request with headers

Makes an HTTP GET request with a custom header.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

YAML

- get_message:
    call: http.get
    args:
      url: https://www.example.com/endpoint
      headers:
        Content-Type: "text/plain"
      query:
        some_val: "Hello World"
        another_val: 123
    result: the_message
- return_value:
    return: ${the_message.body}

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.