getJobLocation

Click to copy

Get a job location by jobId

Get a location of work for an exisiting 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

NameTypeRequired

token

string

Path parameters

NameTypeRequired

jobId

string

orgId

string

itemId

string

Examples

Request

Use dark colors for code blocksCopy
1
2
3
4
# You can also use wget
curl -X GET /{orgId}/{itemId}/jobs/{jobId}/location \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

Response

200 Response

Use dark colors for code blocksCopy
1
2
3
4
{
  "geometryType": "Multipoint",
  "geometry": "string"
}
StatusMeaningDescriptionSchema

200

OK

Location of the job

Location

400

Bad Request

error

WorkflowExceptionDTO

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.