It is possible to invoke a function through its HTTPS Endpoint without having to wait for a response. To do this, simply add the "?_blocking=false" parameter to the URL:
https://parse.ubidots.com/prv/username/my-function?_blocking=false
HTTP/1.1 202 Accepted
Content-Type: application/json
{"activationId":"653ca08ce2104290bca08ce21002909c"}
URL Parameter
Values
Mandatory
_blocking
Not specified, or "False":
Not specified: By default the function will return a response only after finalizing the execution.
False: The function will immediately return a "202 Accepted" response, with a JSON body including the activationID of the function.
No