Home / Connectors / Automation Anywhere Outbound Connector

Automation Anywhere Outbound Connector

Orchestrate your Automation Anywhere bots with Camunda. You can create new queue items and get the result from it

outbound io.camunda:connector-automationanywhere:1

Required inputs

KeyLabelType
configuration.controlRoomUrl Control room URL FEEL expression
authentication.passwordBassesUsername Username secret
authentication.password Password secret
authentication.multipleLogin Multiple login string
authentication.apiUsername Username FEEL expression
authentication.apiKey API key secret
authentication.token Token secret
operation.queueId Work queue ID FEEL expression
operation.data Work item json data FEEL expression
operation.workQueueId Work queue ID FEEL expression
operation.workItemId Work item ID FEEL expression

Optional inputs

KeyLabelType
operation.type Type string
authentication.type Type string
configuration.connectionTimeoutInSeconds Connection timeout in seconds FEEL expression
resultVariable Result variable string
resultExpression Result expression FEEL expression
errorExpression Error expression FEEL expression

Apply this connector with @bpmnkit/connectors

import { applyConnectorTemplate } from "@bpmnkit/connectors" const result = applyConnectorTemplate("io.camunda.connectors.AutomationAnywhere", { "configuration.controlRoomUrl": "= ...", "authentication.passwordBassesUsername": "<your username>", "authentication.password": "<your password>", "authentication.multipleLogin": "true", "authentication.apiUsername": "= ...", "authentication.apiKey": "<your api key>", "authentication.token": "<your token>", "operation.queueId": "= ...", "operation.data": "= ...", "operation.workQueueId": "= ...", "operation.workItemId": "= ...", "operation.type": "addWorkItemsToTheQueue", "authentication.type": "passwordBasedAuthentication", })