HTTP request / API
Performs an HTTP request with a third-party app's REST API endpoint.
Last updated
Was this helpful?
Was this helpful?
https://api.weatherapi.com/v1/current.json?key=e943b863ebed4572b55140350200312&q=#city#
Here in the above URL #city# is the variable that has been used// Object path for storing the response into variable where list is returned
result.data.list[0].id
// Here the value of the field `id` will be stored in the variable mapped to it.// Object path for storing the response into variable where single value is returned
result.data.id
// Here the value of the field 'id' will be stored in the variable mapped to it.