-
Initiate a workflow
Attributes template: Name of the template of which we want the workflow Required: Yes include_tasks: If true, whatever is defined as template could also be a task Required: No Default value: True Output WORKFLOW_EXTRACTED: The Workflow was successfully extracted from the given template Payload: wf_uri can be used as "wf"…
-
Setvar
Sets or updates the parameters of a workflow or a step. Identifier: setvar Elements context_update: A list of parameters that should be set or updated. Required: Yes Default Value: Empty list context_of: Defines the context scope which should be updated. By default, the currently active step will be updated. Required: No…
-
Download Assets
Downloads one or more specified assets. Identifier: download_assets Example <download_assets id="test"> <asset_uris>xai:/assets/hops_02?version=1</asset_uris> </download_assets> <download_assets id="test"> <list name="asset_uris" listType="UNNAMED"> <elem>xai:/assets/hops_02?version=1</elem>…
-
Timer
Sets a timer with the option to set specific delays and periods. The period or the timer ends when the step changes. Identifier: timer Attributes command: Is sent after the timeout period ends. Required: Yes Default Value: Empty delay: Contains the time after which the command is sent. Required: Yes Default Value: Empty…
-
Rest Request
This action is designed to retrieve JSON data over a REST API. It supports the POST and GET data request types. Identifier: rest_request Attributes rest_url: Contains the REST API URL. Possible values: REST URL Required: Yes Example: "https://myfcc.com/sampledata/enginedata" request_type: Contains the REST request type.…
-
Send Commit Message
Sends a generic message with customizable properties to the Frontline connector. These are handled via the DefaultInspectionRequestHandler.class attribute. Identifier: send_commit_message Attributes type: Contains the event type to switch over in the Frontline connector. Possible values: String Required: True Default…
-
Add Attachment
Adds an attachment to the task results of the current step. Identifier: add_attachment Note: You need to enable reporting for your component in the workflow tag. Otherwise, the action will have no effect. Here's an example of how you can do this: <workflow [...] reporting="true"></workflow> Elements type: Contains the type…
-
Get Attachment Content
Retrieves the last attachment added for a particular attachment data type. Identifier: get_attachment_content Elements type: Contains the type of attachment you want to retrieve from the attachments. Required: Yes Default value: Empty write_to: Contains the name of the variable where you want to store the retrieved…
-
Module State
Used to change the state of a module. For example, you can use it to deactivate speech input recognition. Identifier: module_state Attributes module_name: The name of the module Possible values: de.ubimax.andriod.speechrecognition.SpeechRecognitionModule de.ubimax.andriod.client.output.SoundManager…
-
Log Off
Logs off the client. Identifier: logoff Example <logoff id="myaction"/>