Skip to content

getJobTemplateAutomations

GET
Use dark colors for code blocksCopy
1
/{orgId}/{itemId}/jobTemplates/{jobTemplateId}/automatedCreation
Get the list of created automations for a job template

Retrieve the list of created automations for a job template, including scheduled job creation and webhook. The adminBasic or adminAdvanced privilege is required. If it is scheduled job creation, it returns the user who creates the automated job creation. This functionality requires a license for the ArcGIS Workflow Manager Server Advanced role for ArcGIS Enterprise 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

NameTypeRequired
tokenstring¦null

Path parameters

NameTypeRequired
jobTemplateIdstring
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

The list of created automations.

inline
400Bad Request

Error

WorkflowExceptionDTO

Response details

Status Code 200

CreateAutomationsResponse

NameTypeRequiredDescription
automations[AutomationBasic]

Examples

Request

Use dark colors for code blocksCopy
1
2
3
# You can also use wget
curl -X GET /{orgId}/{itemId}/jobTemplates/{jobTemplateId}/automatedCreation \
  -H 'Authorization: Bearer <YOUR_TOKEN>'

Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
{
  "automations": [
    {
      "automationId": "string",
      "automationName": "string",
      "automationType": "Scheduled",
      "createdBy": "string"
    }
  ]
}

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