Free cookie consent management tool by TermsFeed a!urlfortask() Function
a!urlfortask() Function

Function

a!urlForTask( taskIds, returnTaskPathOnly )

This function returns the URL of a process task given the task ID.

See also: Process Task Link: Use this component to within a Link Field to create a link to a process task.

Parameters

Keyword Type Description

taskIds

List of Number (Integer)

Task IDs of process tasks to generate links.

returnTaskPathOnly

Boolean

If true, only the last path segment to the task is included; if false, the full URL of the task is returned. Default: false

Returns

Text Array

Usage considerations

  • The taskIds parameter is required. If no task exists with the provided ID number, a URL is still returned.
  • If returnTaskPathOnly is true, only the task path after /task is returned.
  • If returnTaskPathOnly is false, the URL will return the Tempo URL for the task.
  • To create a URL to a site, use returnTaskPathOnly=true and append the path only to the end of the site URL in the following format: <base_url>/suite/sites/<site_name>/task/<task_path>.
  • If a user does not have viewer rights to the task in the returned URL, the user will see an error when trying to open the URL.

Examples

These examples are designed to illustrate how to use the a!urlForTask() function in the Expression Rule Interface.

URL for a Single Task

a!urlForTask(taskIds: 123456, returnTaskPathOnly: false)

returns "https://tasks.appian.com/suite/tasks/task/WrxYT3TYySQZTUwm"

URLs for Multiple Tasks

a!urlForTask(taskIds: {123456, 654321}, returnTaskPathOnly: false)

returns {"https://tasks.appian.com/suite/tasks/task/WrxYT3TYySQZTUwm", "https://tasks.appian.com/suite/tasks/task/BU8YV4nEFVwMuc3U"}

Return the Task Path Only

a!urlForTask(taskIds: {12345, 54321}, returnTaskPathOnly: true)

returns "WrxYT3TYySQZTUwm"

Feature compatibility

The table below lists this function's compatibility with various features in Appian.
Feature Compatibility Note
Portals Partially compatible

Can be used with Appian Portals if it is connected using an integration and web API.

Offline Mobile Partially compatible

Can be used with offline mobile if it is loaded at the top of the form.

Sync-Time Custom Record Fields Incompatible
Real-Time Custom Record Fields Incompatible
Process Reports Incompatible

You cannot use this function to configure a process report.

Process Events Incompatible

You cannot use this function to configure a process event node, such as a start event or timer event.

Open in Github Built: Thu, Mar 28, 2024 (10:34:47 PM)

a!urlfortask() Function

FEEDBACK