Skip to main content
POST
/
api
/
v2
/
integrations
/
bank
/
transactions
/
sync
Sync bank transactions
curl --request POST \
  --url https://api.example.com/api/v2/integrations/bank/transactions/sync \
  --header 'Content-Type: application/json' \
  --data '
{
  "slug": "<string>",
  "cursor": "<string>"
}
'
{
  "transactions": [
    "<unknown>"
  ],
  "hasMore": true,
  "nextCursor": "<string>",
  "modified": [
    "<unknown>"
  ],
  "removed": [
    "<unknown>"
  ]
}

Body

application/json
slug
string
required

The slug of the bank connection.

cursor
string

Cursor for pagination of transactions.

Response

Default Response

transactions
any[]
required

Array of added transactions.

hasMore
boolean
required

Whether there are more transactions to fetch.

nextCursor
string | null
required

Cursor for the next page of transactions.

modified
any[]
required

Array of modified transactions.

removed
any[]
required

Array of removed transactions.