Get Reviewer Sessions

URL:
https://<Utilities-url>/getReviewerSessions
Methods:
GET
Version Introduced:
10.1

Description

A REST resource that returns a list of sessions in a Data Reviewer workspace. The returned list is an array of session attributes. Each session attribute is an object that has the following four properties:

  • sessionId – Numeric session identifier
  • sessionName – Name of the session (QAReview in Session 1: QAReview)
  • userName – Name of the account that created the session.
  • versionName – ArcSDE version associated with the session. Empty if the Data Reviewer workspace is stored in an fGdb.

Request parameters

ParameterDetails

f

The response format. The default response format is html.

Values: html | json

Example usage

Retrieve a list of Data Reviewer sessions from a Data Reviewer workspace.

Use dark colors for code blocksCopy
1
https://localhost:6443/arcgis/rest/services/reviewer/MapServer/exts/DataReviewerServer/utilities/getReviewerSessions?f=pjson

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
{
 "sessionAttributes": [
  {
   "sessionId": 1,
   "sessionName": "Session 1",
   "userName": "QCTechnician",
   "versionName": ""
  },
  {
   "sessionId": 2,
   "sessionName": "Session 2",
   "userName": "QCManager",
   "versionName": ""
  }
 ]
}
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.