Using Azure Functions can I return an accepted http 202 response to the caller (if the request is valid), before then running a longer function asynchronously, without needing to use a durable function in the middle?
The use case for this is for a custom handler function described here.
I want to run a PHP job which may take longer than 30 seconds (as much as 3-4 minutes).
