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

In This Topic
    GetInstanceBookmarks Method
    In This Topic
    Not supported. Gets all bookmarks in the report instance with specified instance id.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <PathRouteAttribute("{*reportPath}$instances/{instanceId}/bookmarks")>
    Public Overridable Function GetInstanceBookmarks( _
       ByVal reportPath As String, _
       ByVal instanceId As String _
    ) As IActionResult
    [HttpGet()]
    [PathRoute("{*reportPath}$instances/{instanceId}/bookmarks")]
    public virtual IActionResult GetInstanceBookmarks( 
       string reportPath,
       string instanceId
    )

    Parameters

    reportPath
    The full path of the report.
    instanceId
    The report instance id.

    Return Value

    An Microsoft.AspNetCore.Mvc.IActionResult type object with content of collection of C1.Web.Api.Document.Models.DocumentPosition type object.
    Remarks
    It's not supported by this api.
    See Also