UiPath Documentation
action-center
latest
false
  • Release notes Cloud Action Center
    • 2026
      • March 2026
      • February 2026
    • 2025
      • October 2025
      • August 2025
      • July 2025
      • June 2025
      • May 2025
      • April 2025
    • 2024
      • December 2024
      • September 2024
      • July 2024
      • May 2024
      • April 2024
      • March 2024
      • February 2024
      • January 2024
    • 2023
      • November 2023
      • October 2023
      • September 2023
      • August 2023
      • July 2023
      • May 2023
      • April 2023
      • March 2023
      • February 2023
      • January 2023
    • 2022
      • December 2022
      • November 2022
      • October 2022
      • September 2022
      • August 2022
      • July 2022
      • June 2022
      • May 2022
      • April 2022
      • March 2022
      • February 2022
      • January 2022
    • 2021
      • December 2021
      • October 2021
      • September 2021
      • August 2021
      • July 2021
      • June 2021
      • May 2021
      • April 2021
      • March 2021
      • February 2021
      • January 2021
    • 2020
      • December 2020
      • General Availability
      • Public Preview
  • Getting started
    • Introduction - Action Center
    • Unified Pricing licensing
    • Flex licensing
    • Roles and permissions
    • Access control
  • Activities
    • Designing long-running workflows
    • Document Understanding activities
      • Create Document Classification Action
      • Wait For Document Classification Action And Resume
      • Create Document Validation Action
      • Wait For Document Validation Action And Resume
    • Persistence activities
      • Start Job And Get Reference
      • Wait For Job And Resume
      • Add Queue Item And Get Reference
      • Wait For Queue Item And Resume
      • Create Form Task
        • Designing form actions in Studio Web
      • Wait For Form Task And Resume
      • Resume After Delay
      • Assign Tasks
      • Create External Task
      • Wait For External Task And Resume
      • Complete Task
      • Forward Task
      • Get Form Tasks
      • Get Task Data
      • Get App Tasks
      • Add Task Comment
      • Update Task Labels
      • Create App Task
      • Wait For App Task And Resume
      • Configure task timer
  • Actions
    • About actions
      • Action types
    • Exploring actions
    • Action apps
    • Managing actions
      • Action Catalogs
        • Configuring retention policies
    • Configuring task timer
    • Actions overview
      • Working with actions overview
    • Actions dashboards
    • Embedding actions
    • Creating agent escalations with Action apps
  • Autopilot in Action Center - Preview
    • Autopilot in Action Center - Preview
    • Autopilot user interface
    • Tools and features available
    • Action Center-specific use cases for Autopilot
    • Autopilot in Action Center - limitations
    • Security and RBAC
  • Processes
    • About processes
    • Exploring processes
    • Managing processes
  • Notifications
    • My notifications
    • Actionable notifications
  • Audit
    • Audit logs
UiPath logo, featuring letters U and I in white

Action Center

Last updated Mar 19, 2026

Get App Tasks

UiPath.Persistence.Activities.UserAction.GetAppTasks

Description

Retrieves a single App task or a set of App tasks, filtered by specific criteria, namely the task's DTO properties:

  • Status
  • Title
  • ID
  • Priority
  • TaskCatalogName
  • AssignedToUser
  • CreatorUser
  • LastModifierUser
  • CreationTime
  • LastModificationTime
  • OrganizationUnitID

The output object of the Get App Tasks activity can be used in any other persistence activity, for example Wait For App Task And Resume, to cover the scenarios that require another workflow to wait on the tasks, different than the workflow that created those tasks (for example, building a recovery workflow in case the current job fails). You can also pass the output object to a different process as input, so that you don't need to wait for all the tasks to be completed until the initial process resumes.

Note: * Filtering and querying the actions uses the OData syntax, based on the action's metadata.

Project compatibility

Windows | Cross-platform

Windows configuration

Designer panel
  • Task Objects (Output) - The list of output objects that match the criteria set in the activity. The output is returned from Orchestrator as a List<FormTaskData> object. Use this object to create a recovery workflow or to pass it as input to a different process.
Properties panel

Common

  • DisplayName - The display name of the activity.

Input

  • Orchestrator Folder Path - The path to the Orchestrator Folder you want to use with this activity. If left empty, the current Orchestrator folder is used. This field supports only strings and String variables.
  • Reference - The Action's reference that was set using the Create App Task activity.
  • Task Catalog Name - The action's catalog name that was set using the Create App Task activity.

Misc

  • ContinueOnError - Specifies if the automation should continue even when the activity throws an error. This field only supports Boolean values (True, False). The default value is False. As a result, if the field is blank and an error is thrown, the execution of the project stops. If the value is set to True, the execution of the project continues regardless of any error.
Note: If this activity is included in Try Catch and the value of the ContinueOnError property is True, no error is caught when the project is executed.
  • Private - If selected, the values of variables and arguments are no longer logged at Verbose level.

  • TimeoutMS - Specifies the amount of time (in milliseconds) to wait for the activity to run before an error is thrown. The default value is 30000 milliseconds (30 seconds).

OData Query Options

OData Query Option

Description

Field Data Type

Example

Expand

The OData expand option, used to display the related entities of a criterion.

String

"AssignedUser"

Filter

The OData filter option, used to filter the retrieved actions by the specified criteria.

String

Status in ('Pending', 'Unassigned') and Priority eq 'High'

Order By

The OData orderby option, used to order the retrieved actions ascending (asc) or descdending (desc) by a specified criterion.

String

"Title asc"

"ID desc"

Select

The OData select option, used to retrieve a subset of the action's properties.

String

"ID, Status, TaskCatalogName"

Skip

The OData skip option, used to skip a number of actions from being retrieved.

Int32

2

Top

The OData top option, used to set the number of records to be retrieved, limited to 1000 records at a time. If left empty, top 100 records are retrieved.

Int32

20

Note: AND/OR operators are also supported.

Output

  • Task Objects (Output) - The list of output objects that match the criteria set in the activity. The output is returned from Orchestrator as a List<FormTaskData> object. Use this object to create a recovery workflow or to pass it as input to a different process.

Cross-platform configuration

  • Filter - The OData filter option, used to filter the retrieved actions by the specified criteria. This field supports only strings and String variables. For example, Status in ('Pending', 'Unassigned'), and Priority eq 'High'.
  • Select - The OData select option, used to retrieve a subset of the action's properties. You are required to input the ID option. Therefore, if you want to retrieve the Action Catalogs, the query you would use is "Id, TaskCatalogName". This field supports only strings and String variables.
  • Orchestrator Folder Path - The path to the Orchestrator Folder you want to use with this activity. If left empty, the current Orchestrator folder is used. This field supports only strings and String variables.
  • Task Catalog Name - The action's catalog name that was set using the Create App Task activity.
  • Reference - The Action reference that was set using the Create App Task activity.
  • Task Objects (Output) - The list of output objects that match the criteria set in the activity. The output is returned from Orchestrator as a List<FormTaskData> object. Use this object to create a recovery workflow or to pass it as input to a different process.
Advanced options

Misc

  • ContinueOnError - Specifies if the automation should continue even when the activity throws an error. This field only supports Boolean values (True, False). The default value is False. As a result, if the field is blank and an error is thrown, the execution of the project stops. If the value is set to True, the execution of the project continues regardless of any error.
Note: If this activity is included in Try Catch and the value of the ContinueOnError property is True, no error is caught when the project is executed.
  • TimeoutMS - Specifies the amount of time (in milliseconds) to wait for the activity to run before an error is thrown. The default value is 30000 milliseconds (30 seconds).

OData Query Options

OData Query Option

Description

Field Data Type

Example

Expand

The OData expand option, used to display the related entities of a criterion.

String

"AssignedUser"

Order by

The OData orderby option, used to order the retrieved actions ascending (asc) or descdending (desc) by a specified criterion.

String

"Title asc"

"ID desc"

Skip

The OData skip option, used to skip a number of actions from being retrieved.

Int32

2

Top

The OData top option, used to set the number of records to be retrieved, limited to 1000 records at a time. If left empty, top 100 records are retrieved.

Int32

20

OData Query Examples

Use the following examples to Get App Tasks, or for inspiration for other queries:
  1. Get the IDs of Get App Tasks of High priority that are Pending, ordered by their title in descending order.
    1. Filter: "((Priority eq 'High') and (Status eq 'Pending'))"
    2. Order By: "Title desc"
    3. Select: "Id"
  2. Get the Action Catalog where all the Get App Tasks that are Unassigned and of Medium priority are stored in, and order them by their title in ascending order.
    1. Filter: "((Priority eq 'Medium') and (Status eq 'Unassigned'))"
    2. Order By: "Title asc"
    3. Select: "Id, TaskCatalogName"

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated