Make an external HTTP POST request

Makes a POST request to an external HTTP endpoint.

Explore further

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

Code sample

YAML

- send_message:
    call: http.post
    args:
      url: https://www.example.com/endpoint
      body:
        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.