- Release notes
- Getting started
- For administrators
- RPA workflow projects
- Creating an RPA workflow from an idea
- Creating a project
- How to start an RPA workflow
- Managing project files and folders
- Connecting RPA workflows to your accounts
- Configuring activities
- Managing the activities in a project
- Passing values between activities
- Iterating through items
- Managing the data in a project
- Configuring a project to use your data
- Using file and folder resources
- App projects
- Agentic processes
- Agents
- Solutions - Preview
- API workflows - Preview

Studio Web User Guide
Connector
linkThe Connector activity provides access to Integration Service connectors and custom-built connectors. It helps your workflow interact with third-party APIs without a manual HTTP request configuration.
However, each connector includes a dedicated HTTP Request activity. This activity leverages existing connections for authentication, enabling interaction with any API endpoint beyond those covered by the connector prebuilt activities.
Using the Connector activity
link- On your API workflow designer canvas, select the plus (+) icon. The Add activity menu appears.
- Select Connector. A pop-up window opens, showing all available connectors.
- Select the desired connector type. The list of all available activities for the selected connector is displayed.
- Select the activity you need.
- In the Properties panel, configure the connection for the selected activity. If no connections are available, select + Connection and follow the wizard instructions.
- Configure the activity to your needs.
- Test the workflow to execute the activity and generate output fields for later use.
Connector activity example
linkThe following example uses the Salesforce connector and the List All Records activity to retrieve a specific user based on their email address.
Adjust the run configuration to match the data in your Salesforce environment. If you do not have access to a Salesforce environment, sign up for a free account and follow the authentication setup instructions provided in our documentation.
Open the Debug configuration window, then paste and save the following JSON syntax:
{
"email_address": "{insert_your_email_here}"
}
{
"email_address": "{insert_your_email_here}"
}
- Once you establish the connection to the Salesforce connector, select the List All Records activity.
- With the List All Records activity selected, go to the Properties panel, and for the Select object field, select Users.
- For the Where field, use the Expression editor to define the following search query:
"email = '" + $workflow.input.email_address + "'"
"email = '" + $workflow.input.email_address + "'" - Debug your activity.