Get Lifecycle Phase Strings

URL:
https://<Utilities-url>/getLifecyclePhaseStrings
Methods:
GET

Description

Data Reviewer defines a Reviewer result as a row, or feature, submitted to the Reviewer workspace. Data Reviewer exposes a quality control workflow in which a result is reviewed, corrected, and verified.

There are three lifecycle phases:

  • Review
  • Correction
  • Verification

This REST operation retrieves a JSON array of lifecycle phase objects. Each array member has a descriptionType, descriptionString, and descriptionCode. Use this REST operation to retrieve lifecycle phase strings for the lifecycle phase code values returned from other REST operations like Get Results and Dashboard.

Request parameters

ParameterDetails

f

The response format. The default response format is html.

Values: html | json

Example usage

Retrieve the lifecycle phase list from a Reviewer workspace:

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

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
 "lifecyclePhaseString": [
  {
   "descriptionType": 8,
   "descriptionString": "Review",
   "descriptionCode": 2
  },
  {
   "descriptionType": 8,
   "descriptionString": "Correction",
   "descriptionCode": 4
  },
  {
   "descriptionType": 8,
   "descriptionString": "Verification",
   "descriptionCode": 6
  }
 ]
}

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