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.

1
https://localhost:6443/arcgis/rest/services/reviewer/MapServer/exts/DataReviewerServer/utilities/getReviewerSessions?f=pjson

JSON Response example

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.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close