Home / Connectors / Automation Anywhere connector

Automation Anywhere connector

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

outbound io.camunda:http-json:1

Required inputs

KeyLabelType
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

KeyLabelType
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", })