FRAMES | NO FRAMES Description | Parameters | Examples | Response
Visible Job Types
URL http://<wmservice-url>/visiblejobtypes
Parent Resource Workflow Manager Service

Description

This operation is supported from 10.4 onwards.

Represents the job types a user is allowed to see and create.

Parameters

Parameter Details
f Description: The response format. The default response format is html.

Values: html | json
user Required
Description: The username of the client.

Example Usage

Example 1: URL for job type ID 5 in the "Workflow" service on sampleserver.

http://sampleserver/arcgis/rest/services/Workflow/WMServer/visibleJobTypes?user=cjones

JSON Response Syntax

{
  "jobTypes": [
    {
      "id": <jobTypeId1>,
      "name": "<jobTypeName1>",
      "description": "<description1>",
      "category": "<category1>",
      "state": <jobTypeState1>
    },
    {
      "id": <jobTypeId2>,
      "name": "<jobTypeName2>",
      "description": "<description2>",
      "category": "<category2>",
      "state": <jobTypeState2>
    },
    ...
  ]
}

JSON Response Example

{
 "jobTypes": [
  {
   "id": 1,
   "name": "Create Version",
   "description": "Execute as part of a larger workflow for managing your job version",
   "category": "",
   "state": 1
  },
  {
   "id": 2,
   "name": "Landbase Updates",
   "description": "Landbase Updates",
   "category": "",
   "state": 1
  },
  {
   "id": 3,
   "name": "Data Edits",
   "description": "Common workflow for editing data in a geospatial database",
   "category": "",
   "state": 1
  }]
}