Web API Core | ComponentOne
C1.Web.Api.Report Namespace / ReportController Class / GetInstances Method
The full path of the report.

In This Topic
    GetInstances Method
    In This Topic
    Gets all report instances created by the specified report.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <PathRouteAttribute("{*reportPath}$instances")>
    Public Overridable Function GetInstances( _
       ByVal reportPath As String _
    ) As IActionResult
    [HttpGet()]
    [PathRoute("{*reportPath}$instances")]
    public virtual IActionResult GetInstances( 
       string reportPath
    )

    Parameters

    reportPath
    The full path of the report.

    Return Value

    An Microsoft.AspNetCore.Mvc.IActionResult type object with content of collection of C1.Web.Api.Report.Models.ReportExecutionInfo type object.
    See Also