I have implemented a durable function started by calling a http-call.
The Http-Endpoint looks like this:
public static async Task<HttpResponseMessage> HttpStart(
[HttpTrigger(AuthorizationLevel.Function, "post")] HttpRequestMessage req,
[DurableClient] IDurableOrchestrationClient starter,
ILogger log)
Within the method I start the Orchestrator and at the end of the method I return the StatusResponse by calling starter.CreateCheckStatusResponse(req, instanceId)
I then call frequently the returned status-url to get the current status and in the end the result of the process.
Now I want to add a custom http-header to the status-url-response that contains some summary about the returned result.
I wasn't able to figure out how it could be possible to achieve it.