gp_job_from_url: Create GP Job from existing URL

View source: R/geoprocessing-class.R

gp_job_from_urlR Documentation

Create GP Job from existing URL

Description

Create GP Job from existing URL

Usage

gp_job_from_url(url, token = arc_token())

Arguments

url

the url of an existing geoprocessing job

token

default arc_token(). The token to be used with the job.

See Also

Other geoprocessing: arc_form_params(), arc_gp_job, arc_job_status(), gp_params

Examples

if (interactive()) {
job_url <- paste0(
  "https://hydro.arcgis.com/arcgis/rest/services/Tools/Hydrology/",
  "GPServer/TraceDownstream/jobs/jfde67910074649e4a567f0adbb8af870"
)

gp_job_from_url(
  job_url,
  token = auth_user()
)
}

arcgisutils documentation built on March 4, 2026, 9:06 a.m.