Skip to main content
POST
/
api
/
v2
/
integrations
/
bank
/
transactions
/
sync
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.integrations.bank.transactions.sync(
    slug="slug",
)
print(response.has_more)
{
  "transactions": [
    "<any>"
  ],
  "hasMore": true,
  "nextCursor": "<string>",
  "modified": [
    "<any>"
  ],
  "removed": [
    "<any>"
  ]
}

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.

I