UiPath · Arazzo Workflow

UiPath Trigger a Scheduled Process On Demand

Version 1.0.0

Find a configured schedule, resolve its process, and run it immediately.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTestingArazzoWorkflows

Provider

uipath

Workflows

trigger-scheduled-process-now
Resolve a schedule's process and start a job for it on demand.
Finds an enabled schedule by name to obtain its release ID, resolves the matching process to obtain its release key, and starts a job immediately.
3 steps inputs: folderId, inputArguments, scheduleName outputs: jobId, jobState, releaseKey
1
findSchedule
List the process schedules in the folder filtered to the supplied name to capture the release ID the schedule targets.
2
resolveProcess
List the processes in the folder filtered to the schedule's release ID to resolve the GUID release key required to start a job.
3
startNow
Start a job immediately for the resolved process using the All allocation strategy.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: UiPath Trigger a Scheduled Process On Demand
  summary: Find a configured schedule, resolve its process, and run it immediately.
  description: >-
    A pattern for kicking off a scheduled automation ahead of its trigger time.
    The workflow lists the process schedules in a folder to find an enabled
    trigger and the release it points at, lists the processes to resolve that
    release's GUID key, and then starts a job immediately. Every step spells out
    its request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: jobsApi
  url: ../openapi/uipath-jobs-api-openapi.yml
  type: openapi
- name: processesApi
  url: ../openapi/uipath-processes-api-openapi.yml
  type: openapi
- name: schedulesApi
  url: ../openapi/uipath-schedules-api-openapi.yml
  type: openapi
workflows:
- workflowId: trigger-scheduled-process-now
  summary: Resolve a schedule's process and start a job for it on demand.
  description: >-
    Finds an enabled schedule by name to obtain its release ID, resolves the
    matching process to obtain its release key, and starts a job immediately.
  inputs:
    type: object
    required:
    - folderId
    - scheduleName
    properties:
      folderId:
        type: integer
        description: Numeric folder ID used as the organization unit context.
      scheduleName:
        type: string
        description: Name of the process schedule to trigger on demand.
      inputArguments:
        type: string
        description: JSON-serialized input arguments passed to the process.
  steps:
  - stepId: findSchedule
    description: >-
      List the process schedules in the folder filtered to the supplied name to
      capture the release ID the schedule targets.
    operationId: listSchedules
    parameters:
    - name: $filter
      in: query
      value: "Name eq '$inputs.scheduleName'"
    - name: $top
      in: query
      value: 1
    - name: X-UIPATH-OrganizationUnitId
      in: header
      value: $inputs.folderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      releaseId: $response.body#/value/0/ReleaseId
      scheduleEnabled: $response.body#/value/0/Enabled
  - stepId: resolveProcess
    description: >-
      List the processes in the folder filtered to the schedule's release ID to
      resolve the GUID release key required to start a job.
    operationId: listProcesses
    parameters:
    - name: $filter
      in: query
      value: "Id eq $steps.findSchedule.outputs.releaseId"
    - name: $top
      in: query
      value: 1
    - name: X-UIPATH-OrganizationUnitId
      in: header
      value: $inputs.folderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      releaseKey: $response.body#/value/0/Key
  - stepId: startNow
    description: >-
      Start a job immediately for the resolved process using the All allocation
      strategy.
    operationId: startJobs
    parameters:
    - name: X-UIPATH-OrganizationUnitId
      in: header
      value: $inputs.folderId
    requestBody:
      contentType: application/json
      payload:
        startInfo:
          ReleaseKey: $steps.resolveProcess.outputs.releaseKey
          Strategy: All
          Source: Manual
          InputArguments: $inputs.inputArguments
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      jobId: $response.body#/value/0/Id
      jobState: $response.body#/value/0/State
  outputs:
    releaseKey: $steps.resolveProcess.outputs.releaseKey
    jobId: $steps.startNow.outputs.jobId
    jobState: $steps.startNow.outputs.jobState

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/uipath-trigger-scheduled-process-now-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.