in LogicAppsSampleTestFramework/TestFramework/TestEnvironment.cs [96:110]
public static string GetRunsRequestUriWithManagementHost(string flowName, int? top = null)
{
return top != null
? string.Format(
"{0}/{1}/runs?api-version={2}&$top={3}",
TestEnvironment.ManagementWorkflowBaseUrlWithManagementHost,
flowName,
TestEnvironment.EdgePreview20191001ApiVersion,
top.Value)
: string.Format(
"{0}/{1}/runs?api-version={2}",
TestEnvironment.ManagementWorkflowBaseUrlWithManagementHost,
flowName,
TestEnvironment.EdgePreview20191001ApiVersion);
}