GET
/{orgId}/{itemId}/jobTemplates/{jobTemplateId}/automatedCreation/{automationId}
Retrieve the automated creation details used by a job template based on automationId, including scheduled job creation and webhook. The adminBasic or adminAdvanced privilege is required. This functionality requires a license for the ArcGIS Workflow Manager Server Advanced role for ArcGIS Enteprise or the ArcGIS Workflow Manager Advanced organization extension for ArcGIS Online.
Note: Automated job creation with webhooks is not supported in ArcGIS Online.
Query parameters
Name | Type | Required |
---|---|---|
token | string¦null |
Path parameters
Name | Type | Required |
---|---|---|
job | string | |
automation | string | |
org | string | |
item | string |
Response status
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | success | AutomationDetails |
400 | Bad Request | Error | WorkflowExceptionDTO |
Examples
Request
# You can also use wget
curl -X GET /{orgId}/{itemId}/jobTemplates/{jobTemplateId}/automatedCreation/{automationId} \
-H 'Authorization: Bearer <YOUR_TOKEN>'
Response
{
"automationId": "string",
"automationName": "string",
"automationType": "Scheduled",
"createdBy": "string",
"enabled": true,
"details": "string"
}