Post Request

Sends an HTTP POST request to a specified URL with the provided binary data and optionally waits for the response (unless discarded) which is output as a string.

Interface

Inputs

ParameterDetailsPossible Types
-No Primary Input-
URL

The web address to send the POST request to.

Default: ""

string
Body

The binary data to include in the body of the POST request.

Vec<u8>
Discard Result

Makes the request run in the background without waiting on a response. This is useful for triggering webhooks without blocking the continued execution of the graph.

Default: false

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

string