Skip to main content

Documentation Index

Fetch the complete documentation index at: https://knowledge.goautonomous.io/llms.txt

Use this file to discover all available pages before exploring further.

Overview

The third-party connector lets you send data from Go Autonomous to any external system at defined points during request processing. You configure one or more webhook actions — each pairing a lifecycle event (such as “On Confirmation”) with a target URL — so Go Autonomous calls your system automatically as requests move through the pipeline. Multiple third-party connectors can be created, one for each external system you need to connect to.
You must have at least one Authenticator configured before you can create a third-party connector. The connector uses the authenticator to handle credentials for all its outbound calls.

Configuration fields

FieldDescription
NameA label for the connector — used to identify it in the connectors list.
AuthenticatorThe authenticator that provides credentials for all webhook calls made by this connector. Required.
Webhook configurationsOne or more webhook actions defining when and where Go Autonomous sends data (see below). At least one is required.

Webhook actions

Each webhook configuration pairs a lifecycle event with a target URL. When the event occurs on a request, Go Autonomous posts data to that URL.

Available event types

EventWhen it fires
On ClassificationAfter Go Autonomous classifies the intent of an incoming request.
On ExtractionAfter AI extraction has run and fields have been populated.
On Account ResolutionAfter the customer account has been resolved against your data.
On TransformationAfter any transformation steps have been applied to the request data.
On ConfirmationWhen a request is confirmed in Flow.
On Field UpdateWhen a specific field value is updated on a request (see below).
Each event type (except On Field Update) can only be used once per connector. If an event is already configured in one row, it will not be available to select in another row of the same connector.

On Field Update

The On Field Update event fires whenever a specific field is changed. When you select this event type, an additional Field picker appears — choose the exact field (from your configured field settings) that should trigger the webhook. You can add multiple On Field Update rows, each watching a different field. Each field can only be used once per connector.

Set up a third-party connector

1

Open Connectors

Navigate to Administration > Company Settings > Connectors.
2

Add a new connector

Click the add button and select Third-party from the connector type list.
3

Name your connector

Give the connector a descriptive name so you can identify it in the list.
4

Select an authenticator

Choose the authenticator that holds the credentials for your target system. If none exist yet, you’ll be prompted to create one first.
5

Configure webhook actions

Add one or more webhook rows. For each row:
  • Select the event type that should trigger the call.
  • Enter the webhook URL to receive the data.
  • If using On Field Update, also select the field to watch.
6

Save

Save the connector to activate it. Go Autonomous will begin firing webhooks immediately for matching events.

Managing webhook rows

  • Add a row — click the add button below the webhook list to add another event/URL pair.
  • Delete a row — click the delete icon on any row. You cannot delete the last remaining row; at least one webhook configuration must always be present.

Integration events

After the connector is active, use the Integration Events feed to monitor its health. It shows a log of recent outbound calls, including:
  • Successful deliveries.
  • Errors and failed calls.
  • Timestamps and payload details for troubleshooting.

What’s next