Sends an HTTP request to a third-party app's REST API endpoint.

If you need to send or retrieve data from a third-party service that ReplyCX doesnโ€™t natively integrate with, you can use the HTTP Request action block.

This allows you to call an API endpoint and perform GET, POST, or PUT operations.

Methods:

Choose the method of your API endpoint you want to invoke. Replycx supports:

  • GET
  • POST
  • PUT

Endpoint URL:

You must enter the full URL, starting with HTTP or HTTPS.

You can also include variables in the URL by typing '#', as some APIs pass all necessary details within the URL instead of using headers.

https://api.weatherapi.com/v1/current.json key={ key value } =#city#

Here in the above URL #city# is the variable that has been used

Headers:

Add authentication data to the HTTP request. Commonly used for bearer token based authentication.

Body:

Add the necessary details you want to include in your request.

You can send information in two ways:

Raw:

It is normal JSON format in which the request needs to be passed.

Form:

It allows you to map the fields. You can either provide static value or map the variables.

Response:

Saves the response received from the API.

Here we can select the variable in which we want to save the response.

Testing API:

After setting up your API request, click the 'Test the API' button to view the response received.

Was this page helpful?