HTTP request
Performs an HTTP request with a third-party app's REST API endpoint.
If you want to send data or fetch data from a third-party that ZyndraAI/Talkie AB does not have a native integration to, you can use the HTTP request action block.
HTTP request allows you to invoke a API endpoint and perform a GET / POST / PUT operation.
Request
Configure the details for your API request.
Methods
Choose the method of your API endpoint you want to invoke. ZyndraAI/Talkie AB supports:
GET
POST
PUT
Endpoint URL
You must provide the absolute URL, i.e., a URL starting with HTTP or HTTPS.
You can also use the variables in the URL by typing '#', as some APIs do not have headers and mention everything in the URL itself.
Copy
Headers
Add authentication data to the HTTP request. Commonly used for bearer token based authentication.
Make sure you add the content-type field to your request.
Body
Add the required information you want to send as part of 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
When the HTTP request is made, you will receive a response from the API.
You can store the objects received from the API into variables by mapping the fields.
Copy
Copy
Testing API request
Once you have configured your API request, you can click on the 'Test the API' button and see the response received.
From the response screen, you can directly save the object into a variable by clicking on the + icon.
Last updated