- 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 description, description, and description. 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
| Parameter | Details | 
|---|---|
| 
 | The response format. The default response format is  Values:  | 
Example usage
Retrieve the lifecycle phase list from a Reviewer workspace:
https://localhost:6443/arcgis/rest/services/reviewer/MapServer/exts/DataReviewerServer/utilities/getLifecyclePhaseStrings?f=pjsonJSON Response syntax
{
 "lifecyclePhaseString": [
  {
   "descriptionType": 8,
   "descriptionString": "Review",
   "descriptionCode": 2
  },
  {
   "descriptionType": 8,
   "descriptionString": "Correction",
   "descriptionCode": 4
  },
  {
   "descriptionType": 8,
   "descriptionString": "Verification",
   "descriptionCode": 6
  }
 ]
}