Unsubscribe from data refreshes for an Account 

Unsubscribes from periodic refreshes of data associated with a Financial Connections Account.

Parameters

  • featuresarray of enumsRequired

    The list of account features from which you would like to unsubscribe.

    Possible enum values
    transactions

    Transactions data from the account

Returns

Returns an Account object if a valid identifier was provided and if you have sufficient permissions to that account. Raises an error otherwise.

POST /v1/financial_connections/accounts/:id/unsubscribe
curl https://api.stripe.com/v1/financial_connections/accounts/fca_1NQayH2eZvKYlo2CMBkU6Y9s/unsubscribe \
-u "sk_test_BQokikJ...2HlWgH4olfQ2sk_test_BQokikJOvBiI2HlWgH4olfQ2:" \
-d "features[]"=transactions
Response
{
"id": "fca_1NQayH2eZvKYlo2CMBkU6Y9s",
"object": "financial_connections.account",
"account_holder": {
"customer": "cus_9s6XKzkNRiz8i3",
"type": "customer"
},
"balance": null,
"balance_refresh": null,
"category": "cash",
"created": 1688583757,
"display_name": "Sample Checking Account",
"institution_name": "StripeBank",
"last4": "6789",
"livemode": false,
"ownership": null,
"ownership_refresh": null,
"permissions": [],
"status": "active",
"subcategory": "checking",
"subscriptions": [],
"supported_payment_method_types": [
"us_bank_account"
],
"transaction_refresh": {
"id": "fctxnref_OD10EqMBikeOrWm7JW44fdpo",
"status": "succeeded",
"last_attempted_at": 1625337296
}
}

Account Owner 

Describes an owner of an account.

Session 

A Financial Connections Session is the secure way to programmatically launch the client-side Stripe.js modal that lets your users link their accounts.

Transactions 

A Transaction represents a real transaction that affects a Financial Connections Account balance.

Tax Calculations 

A Tax Calculation allows you to calculate the tax to collect from your customer.

Related guide: Calculate tax in your custom payment flow