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:

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

JSON Response syntax

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.

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