ongoing_get

Gets the result from an ongoing get request.

Example

1
2
3
4
{{ 'https://api.example.com/endpoint' | ongoing_get: 'param1', 'value1', 'param2', 'value2' }} => [
'key1' => 'value1',
'key2' => 'value2'
]

Input

Type Parameter Description Required
string requestUrl The URL to get the result from. Comes before the | sign. Required
array params The parameters to pass to the request  

Output

Type Description
array The result from the request