Skip to content
  • There are no suggestions because the search field is empty.

The External Action action

The External Action action allows you to connect your workflows to third-party systems by making API calls. This enables you to send data out of Build Concierge, retrieve information from external platforms, and use that data in later steps of your workflow.

⚠️ Note

Before adding an External Action node to a workflow, you must first configure any required secrets in the Secrets Management area.

📚 Learn more about how to setup secrets in Secrets Management in this article.

chrome-capture-2025-12-15


Configuration

To set up the External Action node:

  • Simply add the node to your workflow and connect the node to a previous step in the workflow (a Starting action or Action node).
  • Click the External Action node to open the Properties panel.

 

Screenshot 2025-12-30 at 17.56.40

The External Action Properties panel is split into three tabs:

  • Basic
  • Headers
  • Output

Each tab controls a different aspect of the API request.


Basic tab

The Basic tab defines the core details of the API request.

Mandatory fields

By default, you’ll see two fields in the Basic tab:

  • URL
  • Request Method

Both of these fields must be configured.

URL

Enter the API endpoint URL in the URL field. Depending on the API, this may include parameters. 

For example, searching for a contact in BigChange may require passing a Search Term.

You can insert workflow variables from earlier steps to dynamically change the API call.

Request Method

Use the Request Method dropdown to select how the request should be made. The available options are:

  • GET
  • POST
  • PUT
  • PATCH
  • DELETE

This must match the method expected by the third-party system. 

⚠️ Note

Always refer to the external system’s API documentation to confirm.

In the example of searching for a contact in BigChange, the request method for searching for a contact would be GET. 

The below is an example of how you’d configure the External Action node to dynamically search for a Company in Simpro:

Request Body

If the Request Method is set to POST, PUT, or PATCH, an additional Request Body field will appear.

Enter the request body in JSON format. As with the URL field, you can insert workflow variables to dynamically populate the request body.

⚠️ Note

Refer to the third party system documentation to confirm the exact format.


Headers tab

The Headers tab is used to configure additional metadata for the API request, such as content types, API keys, or authentication tokens.

To add a header:

  1. Click + Add.

  2. Enter the parameter name in the Enter name field.

  3. Enter the corresponding value in the Enter value field.

Secrets created in the Secrets Management area can be inserted as variables in the Enter value field, to securely pass sensitive information. 

Common example: Authorization header

Many APIs require an Authorization header containing an API key or bearer token.

For example, when communicating with the Simpro Company Search API, the request must include an Authorization header with a valid API key with access to an instance of Simpro. 

To set this up:

  • Insert Authorization in the Enter name field 

⚠️ Note

Spelling and capitalisation matter. You must use US English spelling with a ‘Z’ for Authorization.

  • Type Bearer in the Enter value field and then click + Add a variable and select the appropriate secret from the dropdown.

You can add multiple headers as required.


Output tab

The Output tab controls what data is extracted from the API response and made available to later steps in the workflow.

By default, the full response body is stored as a workflow variable. 

You can also expose:

  • HTTP Status Code

  • Status Text

As well as defining custom output variables.

Defining output variables

To define a custom output variable:

  1. Click + Add. This will reveal three fields: 
    1. Enter name – the variable name to be used in later workflow steps

    2. Enter value – the dot notation used to extract the value

    3. Type – the data type (Text, Number, Phone, etc.)

⚠️ Note

The Type must match the requirements of any downstream nodes. For example, when using Create a Contact in BigChange, the Phone Number field requires a variable that is a Phone type.

Using dot notation

Dot notation is used to extract specific values from the JSON response. It will vary depending on the body of the third party system’s API response.

Example 1: Simpro company search response

When calling the Simpro company search API referenced above, the following dot notation would be used:

{

  "ID": 3,

  "CompanyName": "Build Concierge Ltd"

}

 

To extract the company name, set Enter value to:

.CompanyName

Example 2: BigChange contact list response

The BigChange Contact List endpoint returns the following body:

{

  "Result": [

    {

      "label": "API Creation",

      "id": 49000281

    }

  ]

}

To extract the Contact ID, use:

Result.id

⚠️ Note

Dot notation is case-sensitive. If multiple values match the same path, all values will be stored in the variable. You can configure multiple Outputs for each External Action.


Saving the configuration

Once all three tabs have been configured, click Save to store the External Action configuration.


Other ways to extract data from the response

If dot notation does not return the data you need, the full API response is always stored in a workflow variable called API Response.

This variable can be:

  • Passed to an AI Prompt node to extract or interpret information; or

  • Passed to an Extract Text node to extract values using regex


Other considerations

You can use multiple External Action nodes in a single workflow to interact with different endpoints just like any other node in the Workflow Builder.


BigChange legacy web service endpoints

When using BigChange legacy web service endpoints, two secrets are required:

  • BigChange API key
  • The integration username and password which are encoded in Base64. Encoding can be achieved here - https://www.base64encode.org/ 
  • Simply enter the username and password in the following format, replacing the values as appropriate and click Encode: [username]:[password]
  • Copy the encoded value and paste it into the Enter value field
  • On the Header tab add two headers as follows:

Name

Value

Authorization

Basic [Encoded User Credentials]

Key

[BigChange API Key]

 


Example workflow: Differentiating multiple contact found in BigChange using External Action and AI Prompt

Smith & Co want to search contacts in BigChange and, where a contact is found, create a job against the found contact based on an emailed work order. To do this, they will use the Search Contacts in BigChange action node to search for contacts based on the name/email or phone number contained in the email. 

Where the search returns multiple possible matches via the Found Many output of the Search Contacts node, an AI Prompt Action can be used to compare the original search term (name/email/phone) with the returned contact. It can therefore pinpoint the correct contact from the list in order to create a job against it. 

However, the Many found output on the search action does not actually include the list of the returned contacts. To get this information, an External Action node can be used to call the BigChange contact search API and pass the response to the AI Prompt node.

The workflow would therefore look something like this:

Screen Shot 2025-12-29 at 11.57.07 am


External Action Configuration

Basic tab

  • URL would be set to: ‘https://webservice.bigchange.com/v01/services.ashx?action=ContactList&term=[VariableHoldingSearchTerm]’

⚠️Note

Instead of [VariableHoldingSearchTerm], use the output from the Search contact node e.g. Contact Name. 

  • Request method would be set to GET

Screen Shot 2025-12-29 at 12.00.02 pm

Headers tab

Two headers would be added:

  1. Authorization:
    1. In the Enter Name field of the first header, insert Authorization.
    2. In the Enter value field, insert ‘Bear [SecretHoldingBigChangeAuth]’, with the placeholder replaced by the preconfigured secret holding the base64 encoded BigChange Username and Password.
  2. Key:
    1. In the Enter name field of the second header, insert Key.
    2. In the Enter Value field set to the BigChange API Key, which should also be stored as a secret.

As we plan to use the full API response, there is no need to configure the Output tab.


AI Prompt Configuration

In the AI prompt node we’d enter a prompt like:

‘You receive two inputs.

Contacts:

[apiResponse]

TargetName:

[SearchTerm]

Goal

Find the single contact whose name exactly equals TargetName.

Matching rules

- Trim whitespace on both sides.

- Collapse all internal runs of whitespace to a single space.

- Case-insensitive comparison.

- Compare against the "name" field; if "name" is missing, compare "fullName".

Resolution

- If exactly one match → return that contact’s ID and name.

- If multiple exact matches → return the one with the lowest numeric ID.

- If no exact match → return Unknown for both.

Output (two lines, exactly):

ContactId: <id or Unknown>

ContactName: <name or Unknown>’

Screen Shot 2025-12-29 at 12.10.13 pm