HTTP POST
CallableHttpPostAsync Blueprint node that performs an HTTP POST request with a string body and fires OnSuccess or OnFailure when complete.
Type: Callable (has execution pins)
Category: Fortuna|HTTP
Keywords: http
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| URL | String | — | URL parameter |
| Body | String | — | Body parameter |
| ContentType | String | — | ContentType parameter |
| Headers | String Map | — | Headers parameter |
| TimeoutSeconds | Float | 10.0 | TimeoutSeconds parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| OnSuccess | Exec | OnSuccess output |
| OnFailure | Exec | OnFailure output |
| ResponseCode | Integer | ResponseCode output |
| Body | String | Body output |
| ResponseHeaders | String Map | ResponseHeaders output |
| ErrorMessage | String | ErrorMessage output |
Example Use Cases
Example 1
Submit a score to a REST leaderboard API using a JSON payload.
Example 2
Send analytics events to a telemetry endpoint.