Automation Anywhere connector
[Deprecated] Orchestrate your Automation Anywhere bots with Camunda. You can create new queue items and get the result from it
Required inputs
| Key | Label | Type |
|---|---|---|
controlRoomURL | Control room URL | FEEL expression |
authentication.request.body.username | Username | FEEL expression |
authentication.request.body.password | Password | secret |
authentication.request.body.apiKey | API key | secret |
authentication.request.body.multipleLogin | Multiple login | string |
token | Token | secret |
queueId | Work queue ID | FEEL expression |
workItemId | Work item ID | FEEL expression |
itemData | Work item json data | FEEL expression |
Optional inputs
| Key | Label | Type |
|---|---|---|
operationType | Operation type | string |
authenticationType | Type | string |
connectionTimeoutInSeconds | Connection timeout | FEEL expression |
resultVariable | Result variable | string |
resultExpressionGetItemState | Result expression | FEEL expression |
resultExpressionGetItemId | 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.v1", {
"controlRoomURL": "= ...",
"authentication.request.body.username": "= ...",
"authentication.request.body.password": "<your password>",
"authentication.request.body.apiKey": "<your api key>",
"authentication.request.body.multipleLogin": "true",
"token": "<your token>",
"queueId": "= ...",
"workItemId": "= ...",
"itemData": "= ...",
"operationType": "addWorkItemsToTheQueue",
"authenticationType": "userNamePasswordAuth",
})