FRAMES | NO FRAMES Description | Parameters | Examples | Response
Reports
URL http://<wmservice-url>/reports
Parent Resource Workflow Manager Service
Child Resources Report

Description

Represents a list of all the reports that are configured in the ArcGIS Workflow Manager system.

Note: When the user store is set to Portal and user information changes in the Portal, it is required to reconnect to the service and run a query or report to refresh the user information in the database.

Parameters

Parameter Details
f Description: The response format. The default response format is html.

Values: html | json

Example Usage

Example 1: URL for reports in the "Workflow" service on sampleserver.

http://sampleserver/arcgis/rest/services/Workflow/WMServer/reports

JSON Response Syntax

{
  "reports": [
    {
      "id": <reportId1>,
      "name": "<reportName1>",
      "title": "<title1>",
      "description": "<description1>",
      "hierarchy": "<hierarchy1>"
    },
    {
      "id": <reportId2>,
      "name": "<reportName2>",
      "title": "<title2>",
      "description": "<description2>",
      "hierarchy": "<hierarchy2>"
    },
    ...
  ]
}

JSON Response Example

{
  "reports": [
    {
      "id": 1,
      "name": "Workload Report",
      "title": "Workload Report",
      "description": "A measure of the job load for each analyst.",
      "hierarchy": "General Reports"
    },
    {
      "id": 2,
      "name": "Schedule Status",
      "title": "Job Schedule Status",
      "description": "",
      "hierarchy": "General Reports"
    }
  ]
}