GET api/reportserver/v2/executions/scheduledtasks/{scheduledTaskId}

    Returns a collection of all executions by a scheduled task.

    Request Information

    URI Parameters

    NameDescriptionTypeAdditional information
    scheduledTaskId

    Scheduled task ID.

    string

    Required

    Body Parameters

    None.

    Response Information

    Resource Description

    Collection of SchedulingExecution
    NameDescriptionTypeAdditional information
    Id

    Execution ID.

    string

    None.

    DocumentIds

    Collection of document IDs created by this execution.

    Collection of string

    None.

    AlertTriggered

    Specifies if an alert has been sent by this execution.

    boolean

    None.

    ExecutionDate

    Obsolete since R2 2020. Use ExecutionDateUtc property instead. Gets or sets the execution DateTime created value in the server local timezone.

    date

    None.

    ExecutionDateUtc

    Gets or sets the execution DateTime created value in the UTC.

    date

    None.

    Response Formats

    application/json, text/json

    Sample:
    [
      {
        "Id": "sample string 1",
        "DocumentIds": [
          "sample string 1",
          "sample string 2"
        ],
        "AlertTriggered": true,
        "ExecutionDate": "2025-02-12T16:46:58.5943482+00:00",
        "ExecutionDateUtc": "2025-02-12T16:46:58.5943482+00:00"
      },
      {
        "Id": "sample string 1",
        "DocumentIds": [
          "sample string 1",
          "sample string 2"
        ],
        "AlertTriggered": true,
        "ExecutionDate": "2025-02-12T16:46:58.5943482+00:00",
        "ExecutionDateUtc": "2025-02-12T16:46:58.5943482+00:00"
      }
    ]
    In this article
    Not finding the help you need?