- URL:
 - https://<Utilities-url>/getReviewerSessions
 - Methods:
 GET- Related Resources:
 - Utilities
 - 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:
session– Numeric session identifierI d session– Name of the session (QAReview inName Session 1: QAReview)user– Name of the account that created the session.Name version– ArcSDE version associated with the session. Empty if the Data Reviewer workspace is stored in an fGdb.Name 
Request parameters
| Parameter | Details | 
|---|---|
  | The response format. The default response format is  Values:   | 
Example usage
Retrieve a list of Data Reviewer sessions from a Data Reviewer workspace.
https://localhost:6443/arcgis/rest/services/reviewer/MapServer/exts/DataReviewerServer/utilities/getReviewerSessions?f=pjsonJSON Response example
{
{
 "sessionAttributes": [
  {
   "sessionId": 1,
   "sessionName": "Session 1",
   "userName": "QCTechnician",
   "versionName": ""
  },
  {
   "sessionId": 2,
   "sessionName": "Session 2",
   "userName": "QCManager",
   "versionName": ""
  }
 ]
}
}