Skip to main content

Sage Intacct

This connector captures data from Sage Intacct into Flow collections.

It is available for use in the Flow web application. For local development or open-source workflows, ghcr.io/estuary/source-sage-intacct:dev provides the latest version of the connector as a Docker image. You can also follow the link in your browser to see past image versions.

Supported objects

The following objects support an incremental strategy for capturing new and updated documents:

  • CUSTOMER
  • APTERM
  • CLASS
  • DEPARTMENT
  • EMPLOYEE
  • GLACCOUNT
  • LOCATION
  • TAXDETAIL
  • VENDOR
  • TRXCURRENCIES
  • GLJOURNAL
  • PROJECT
  • ITEM
  • TASK

These objects support capturing via periodic snapshotting:

  • COMPANYPREF

Prerequisites

To use this connector, you'll need:

  • A Sage Intacct Account
  • An active Web Services developer license with sender ID and password provisioned

The Web Services subscription must be enabled, and the sender ID must be authorized for your company to make API calls. Reference the Sage Intacct Web Services Doc for more information.

Configuration

You configure connectors either in the Flow web app, or by directly editing the catalog specification files. The values and specification sample below provide configuration details specific to the Sage Intacct source connector.

Properties

Endpoint

PropertyTitleDescriptionTypeRequired/Default
/sender_idSender IDWeb Services Sender IDstringRequired
/sender_passwordSender PasswordWeb Services Sender PasswordstringRequired
/company_idCompany IDSage Intacct Company IDstringRequired
/user_idUser IDSage Intacct User IDstringRequired
/passwordPasswordSage Intacct PasswordstringRequired

Bindings

PropertyTitleDescriptionTypeRequired/Default
/nameNameName of this resourcestringRequired
/intervalIntervalInterval between data syncsstringPT5M

Sample

captures:
${PREFIX}/${CAPTURE_NAME}:
endpoint:
connector:
image: ghcr.io/estuary/source-sage-intacct:dev
config:
sender_id: my_sender_id
sender_password: secret_sender_password
company_id: my_company
user_id: my_user_id
password: secret_user_password
bindings:
- resource:
name: CUSTOMER
interval: PT5M
target: ${PREFIX}/CUSTOMER
{...}