Body
application/json
Response
Default Response
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>"
]
}
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>"
]
}
Default Response