http.client Action

This trigger action executes an HTTP request to a specified server through GET, POST, PUT or DELETE.

Action

This trigger action is found under the Networking heading.

Canvas

When dragged onto the canvas, the appearance of the action is a rectangle with two routing points.

The left routing point (red) is the failure route to follow if there is an error during execution.

The right routing point (green) is the success route to follow if action executes successfully.

Form

Parameters

Name

Type

Required

Descriptions

Method

String

Yes

HTTP defines methods (sometimes referred to as verbs) to indicate the desired action to perform on the identified resource. This action currently supports GET, POST, PUT, and DELETE methods.

String

Yes

URL of the specified server to receive or send the HTTP request.

Content type

String

 

Type of data in the body.

Headers

Array

 

Additional information passed between the client and the server in the form of key-value pairs.

Body

Array

 

The body of the request. This can either be raw or using the helper form. The format of the body is dictated by the receiving server. The Body: Raw takes precedence over Body: Form.