What version of .NET are you attempting to target? .NET 8 Description With the Inprocess flow, we could do var status = await client.GetStatusAsync(instanceId, true, true) And in turn have access to the orchestration history of instanceId through status.History With the out-of-process API, the API is now var status = await client.GetInstanceAsync(instanceId, true) Which returns OrchestrationMetadata object, but doesn't contain History property. How can one have access to orchestration history with an out-of-process model of running Azure functions?