Sync permissioned bank feed statements data with Sage Intacct through Apideck's unified API. One integration, instant access to the governed data your team needs.
List, Create, Get, Delete operations available through our unified API
Fields available for Sage Intacct Bank Feed Statements
idbank_feed_account_idstatusstart_datetransactionscreated_atcreated_byupdated_atupdated_bySample response structure for bank feed statements
{
"id": "12345",
"bank_feed_account_id": "12345",
"status": "active",
"start_date": "2024-01-15",
"transactions": [
{
"id": "12345"
}
],
"created_at": "2024-01-15T10:30:00.000Z",
"created_by": {
"id": "12345",
"name": "John Doe",
"email": "john.doe@example.com"
},
"updated_at": "2024-01-15T10:30:00.000Z",
"updated_by": {
"id": "12345",
"name": "John Doe",
"email": "john.doe@example.com"
}
}Start syncing Sage Intacct bank feed statements in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List bank feed statements from Sage Intacct
const result = await apideck.accounting.bankFeedStatements.list({
serviceId: 'sage-intacct'
})
for await (const page of result) {
console.log(page)
}
// Returns unified bank feed statements dataExplore more Sage Intacct resources available through Apideck's unified API
We build and maintain connectors, so you don't have to. View our full list of Accounting connectors.
Missing a connector? We're able to add new connectors.
Build Sage Intacct integrations in your favorite language with our official SDKs.
Build Sage Intacct integrations with the official Node.js SDK.
Build Sage Intacct integrations with the official TypeScript SDK.
Build Sage Intacct integrations with the official PHP SDK.
Build Sage Intacct integrations with the official .NET.
Build Sage Intacct integrations with the official Python SDK.
Build Sage Intacct integrations with the official Java SDK.
Build Sage Intacct integrations with the official Go SDK.