Workflow

public class Workflow

The Workflow object provides general information about the current Workflow.

 Properties

int Id

Id of the workflow

int FileId

Id of the workflow file

int ProjectId

Id of the workflow project

Users Users

A list of all users that have read privilege at the workflow and may become participant

Groups Groups

A list of groups that are assigned to the team the workflow is associated to

Example

This example reads the email address of the user with the name "Smith".

mailto = Workflow.Users.GetValue("Smith").Email

also possible:

mailto = Workflow.Users["Smith"].Email