GET
/{orgId}/{itemId}/jobs/{jobId}/locationGet a location of work for an existing job. The geometry for the job location is returned in the ArcGIS REST API geometry JSON format. Job locations are returned using the WGS 1984 Web Mercator (Auxiliary Sphere) coordinate system (spatial reference 3857). Supported geometry types are Multipoint, Polyline, and Polygon.
Query parameters
| Name | Type | Required |
|---|---|---|
token | string¦null |
Path parameters
| Name | Type | Required |
|---|---|---|
job | string | |
org | string | |
item | string |
Response status
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Location of the job | Location |
| 400 | Bad Request | error | WorkflowExceptionDTO |
Examples
Request
# You can also use wget
curl -X GET /{orgId}/{itemId}/jobs/{jobId}/location \
-H 'Authorization: Bearer <YOUR_TOKEN>'Response
{
"geometryType": "Multipoint",
"geometry": "string"
}