Skip To Content
ArcGIS Developer
Dashboard

Get Lifecycle Phase Strings

Description

License:

The ArcGIS Data Reviewer extension is required to use this resource.

Note:

This resource is dependent on the ArcGIS Data Reviewer ArcMap runtime-based server object extension (SOE). ArcGIS Enterprise 10.9.x, part of the ArcGIS 2021 releases, is the last release of ArcGIS Enterprise to support services published from ArcMap.

Consider Data Reviewer capabilities enabled using ArcGIS Pro and integrated in the Validation service.

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:

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

JSON Response syntax

{
 "lifecyclePhaseString": [
  {
   "descriptionType": 8,
   "descriptionString": "Review",
   "descriptionCode": 2
  },
  {
   "descriptionType": 8,
   "descriptionString": "Correction",
   "descriptionCode": 4
  },
  {
   "descriptionType": 8,
   "descriptionString": "Verification",
   "descriptionCode": 6
  }
 ]
}