Web API Edition | ComponentOne
C1.Web.Api.DataEngine Namespace / DataEngineController Class / GetAnalysisStatus Method
The data source key specifies the data.
The key specifies the analysis instance.

In This Topic
    GetAnalysisStatus Method
    In This Topic
    Gets the analysis status.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <RouteAttribute("{dataSourceKey}/analyses/{token}/status")>
    <CacheControlAttribute(NoStore=True, NoCache=True)>
    Public Overridable Function GetAnalysisStatus( _
       ByVal dataSourceKey As String, _
       ByVal token As String _
    ) As IHttpActionResult
    [HttpGet()]
    [Route("{dataSourceKey}/analyses/{token}/status")]
    [CacheControl(NoStore=true, NoCache=true)]
    public virtual IHttpActionResult GetAnalysisStatus( 
       string dataSourceKey,
       string token
    )

    Parameters

    dataSourceKey
    The data source key specifies the data.
    token
    The key specifies the analysis instance.

    Return Value

    The status.
    See Also