Http Request
Performs an HTTP request with a third-party app's REST API endpoint.
Last updated
Was this helpful?
Performs an HTTP request with a third-party app's REST API endpoint.
Last updated
Was this helpful?
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.
Choose the method of your API endpoint you want to invoke. Replycx supports:
GET
POST
PUT
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=e943b863ebed4572b55140350200312&q=#city#
Here in the above URL #city# is the variable that has been used
Add authentication data to the HTTP request. Commonly used for bearer token based authentication.
Add the necessary details you want to include in your request.
You can send information in two ways:
It is normal JSON format in which the request needs to be passed.
It allows you to map the fields. You can either provide static value or map the variables.
Saves the response received from the API.
Here we can select the variable in which we want to save the response.
After setting up your API request, click the 'Test the API' button to view the response received.