Description
Represents a list of the dependencies that exist for a job.
Parameters
Parameter |
Details |
f |
Description: The response format. The default response format is html.
Values: html | json |
Example Usage
Example 1: URL for the dependencies of job ID 5 in the "Workflow" service on sampleserver.
http://sampleserver/arcgis/rest/services/Workflow/WMServer/jobs/5/dependencies
JSON Response Syntax
{
"dependencies": [
{
"id": <dependencyId1>,
"jobId": <jobId1>,
"heldOnType": <heldOnType1>,
"heldOnValue": <heldOnValue1>,
"depJobId": <dependentOnJobId1>,
"depOnType": <dependentOnType1>,
"depOnValue": <dependentOnValue1>
},
{
"id": <dependencyId2>,
"jobId": <jobId2>,
"heldOnType": <heldOnType2>,
"heldOnValue": <heldOnValue2>,
"depJobId": <dependentOnJobId2>,
"depOnType": <dependentOnType2>,
"depOnValue": <dependentOnValue2>
},
...
]
}
JSON Response Example
{
"dependencies": [
{
"id": 1,
"jobId": 15,
"heldOnType": 3,
"heldOnValue": 20,
"depJobId": 8,
"depOnType": 2,
"depOnValue": 5
}
]
}