Documentation Index
Fetch the complete documentation index at: https://docs.synctera.com/llms.txt
Use this file to discover all available pages before exploring further.
Types of Accounts
Synctera supports multiple account types.SAVINGandCHECKINGare Demand Deposit Accounts (DDA) and represent funds accrued by the account holder.- A
LINE_OF_CREDITaccount represents unsecured line of credit extended to the account holder. - A
CHARGE_SECUREDaccount represents secured non-revolving credit extended to the account holder, secured by a linked DDA. - A
CHARGE_UNSECUREDaccount represents an unsecured non-revolving credit extended to the account holder. - A
CREDIT_CARDaccount represents a revolving line of credit for use with a credit card
GENERAL_LEDGERaccounts - Internal GL accounts (settlement, reserve, P&L, etc). These are created and managed by Synctera or the bank only and are not created directly by integrators in production.
- Internal Accounts - a set of pre-defined general ledger accounts linked to the FinTech, not individual customers. See the Internal Account API.
- External Accounts: a link to an account outside the Synctera platform. See the External Accounts guide.
Prerequisites
This guide assumes that you have:- Created a personal customer or business customer
- Created and recorded the required disclosures for the end customer, such as account agreements
- Verified a customer by running KYC/KYB and obtaining the proper verification status
In order to open an account and participate in money movement, all account holders, joint holders, and authorized signers are required to undergo KYC or KYB verification and have a
verification_status of ACCEPTED.baseurl– points to the correct environment (sandbox or production).apikey– API key for that environment.
Customer Device Fingerprinting
All Synctera API endpoints support customer device fingerprinting via the Customer-Device-Info HTTP header. For any request made on behalf of an end-customer (for example, opening an account from your mobile app), you should include this header with device telemetry:Creating an Account
This section will walk you through the creation of a basic account and getting it ready to use with other features such Cards and ACH. This assumes you have set upbaseurl and apikey environment variables. See Base URL and Authentication for instructions.
Call POST /v2/accounts to create the account, linking to the existing customer.
- Cards - create a card on the account
- Transaction rails your program supports (e.g. ACH, SyncteraPay, Internal Transfers, AFT/OCT, Wires, mRDC, etc)
Account Relationships
A customer can be related to an account in different ways:| relationship_type | Description |
|---|---|
| PRIMARY_ACCOUNT_HOLDER | Required, must have one primary owner on the account. Requires an ACCEPTED verification status. |
| JOINT_ACCOUNT_HOLDER | Joint owner with the same permissions as the Primary Account Holder. Requires an ACCEPTED verification status. |
| AUTHORIZED_SIGNER | The authorized signer is a person that can transact on the account but is not an account owner. Requires an ACCEPTED verification status. |
| AUTHORIZED_USER | The authorized user is a person that can only transact on the account. This person does not require an ACCEPTED verification status but an OFAC check will be completed by the platform using the customer’s name and address. This means that you will not need to collect information typically used in KYC such as SSN, SIN, date of birth, but should collect name and address to minimize OFAC false positives. |
customer_id attribute if the account holder is a personal customer, and business_id if a business customer.
Example:
Status
The account object contains two status attributes:access_status: can be set toFROZENto temporarily freeze an account. This is an operational access state.statusrepresents the lifecycle of the account. A FinTech can progress the account fromACTIVE_OR_DISBURSEDtoIN_CLOSINGif the balance of the account is zero. The Synctera platform also updates this attribute, e.g. setting it toRESTRICTEDwhen the account holder has not been verified. Note that authorized signers do not need to be verified.- An account with a
statusofIN_CLOSINGis only allowed to transition toCLOSED. Accounts are transitioned toCLOSEDby the system after account closure is initiated and all system checks pass (see below section) Account status update to any other status fromIN_CLOSINGis not allowed.
access_status of ACTIVE and a status of ACTIVE_OR_DISBURSED.
Account Statuses
| status | Description | Transactable |
|---|---|---|
| APPLICATION_SUBMITTED | Deprecated application state. | N |
| ACTIVE_OR_DISBURSED | Account is open and can transact. | Y |
| ACCOUNT_NEVER_ACTIVE | Account was never activated. | N |
| ACCOUNT_NOT_DESIRED | Credit account created but customer did not accept. | N |
| ACTIVATED_NOT_DISBURSED | Credit account activated but funds not yet disbursed/used. | N |
| FAILED_KYC | We were unable to verify the account holder (failed KYC). | N |
| RESTRICTED | Account holder has not successfully passed KYC; account is restricted. | N |
| DELINQUENT | Credit account is delinquent (past due on required payments). | N |
| SUSPENDED | Suspected fraudulent activity; blocked from further transactions. | N |
| IN_CLOSING | Account is in the process of being closed. Only allowed transition is to CLOSED. | N |
| CLOSED | Account closed (balance must be zero). Cannot transact. | N |
| CHARGED_OFF | Charged‑off account (closed with loss). | N |
| AWAITING_FIXING | Account is awaiting remediation. | N |
Balance Floor and Ceiling
The optionalbalance_floor and balance_ceiling attributes control what happens when the account balance goes below or above a set level. This can be used to implement sweep accounts.
- balance_floor – defines a minimum balance and a linked overdraft account (if required).
- balance_ceiling – defines a maximum balance and an overflow account.
Balances
Accounts have two types of balances:ACCOUNT_BALANCE and AVAILABLE_BALANCE.
For SAVING and CHECKING accounts:
ACCOUNT_BALANCE: the amount of money in the account. Equal to the sum of credits minus debits for all posted transactions.AVAILABLE_BALANCE: the account balance minus any pending debits.
LINE_OF_CREDIT accounts:
ACCOUNT_BALANCE: the amount of credit currently in use. Equal to the sum of debits minus credits for all posted transactions.AVAILABLE_BALANCE: the amount of credit available. Equal to the credit limit minusACCOUNT_BALANCEminus any pending debits.
Account Products and Templates
Synctera supports the concepts of Account Products and Account Templates to so you don’t need to specify all the details when creating similar accounts.Account Products
An account product is a set of attributes that define how interest is calculated for accounts (and, in v2 (alpha), fees via dedicated fee products). The account product resource acts as a profile that can apply to multiple accounts. Changes to the account product affects all accounts that reference it. Only interest-bearing accounts need to reference an account product. Details about interest calculation can be found here in the Interest Guide. Using an account product is optional. If no account product is specified when creating the account, no interest will be calculated. To create an interest product_type, use POST /v0/accounts/products withproduct_type = "INTEREST".
Example:
id attribute. This is used for when creating an account template and referenced as interest_product_id on templates and accounts.
Account Templates
Account templates contain predefined values for creating an account. When creating an account, the Accounts API copies all the template values to the account resource. Once you create an account, the API no longer references the template used to create it, and updates won’t affect existing accounts. To create an account template, call POST /v2accounts/templates. All account creation uses an account template. As a convenience, theaccount_template_id does not need to be specified if there is a single account template that matches the requested account’s type. As part of initial the FinTech setup, a simple account template for each account type is automatically created.
You can override template values in the POST /v0/accounts request when creating an account. However, the account type in the template and the POST request must agree.
To create an account template, specify the type of account (CHECKING, SAVING, LINE_OF_CREDIT or CHARGE_SECURED), and the attributes for that type. The is_enabled attribute must be set to true to use this template when creating an account. This example will use a SAVING account.
Key Notes:
- Rails flags:
is_ach_enabled,is_card_enabled,is_eft_ca_enabled,is_external_card_enabled,is_p2p_enabled,is_synctera_pay_enabled,is_wire_enableddetermine which payment rails are allowed and are enforced both via APIs and console operations. interest_product_idis optional. If omitted, no interest is calculated for accounts using this template.spend_control_idon templates/accounts should be used for spending limits; spending_limits is deprecated. See the Spend Controls guide.balance_floorandbalance_ceilingare optional attributes that can also be set on the account template level.
id attribute. This is used for when creating an account.
Closing an Account
As end customers unenroll from a fintech’s service, their accounts with Synctera will need to be closed. Synctera’s Initiate Closure API allows fintechs to close a customer account as well as all products in use by the customer and ensure all underlying transactions are handled appropriately, with just one API call. Once closure is initiated - Synctera will:- Check for active disputes and pending transactions, and pause on closure until resolution
- Stop further transactions, except for certain allowed scenarios (authorized payments, refunds, etc.)
- Deactivate cards and tokens.
- End recurring transactions.
- Write off negative balances and handle other closure‑related behaviors.
- Payout any interest due to the customer.
- Transfer remaining funds to a specified destination account. If the destination account is an external account via ACH, the system will wait on a 2 day return window to ensure payout settles to avoid returns to a closed account before closing
Integrating with Account Closure:
The following curl example will walk you through integrating with Synctera’s account closure functionality, via the Initiate Closure API. This assumes you have set up baseurl and apikey environment variables. See Base URL and Authentication for instructions. Closing an account requires the following integrations:- Integrate with Synctera’s Initiate Closure API: This API call will start the closure process and the customer account’s status will be set to IN_CLOSING. The fintech will have to provide a destination account for customer funds to be transferred to.
- Subscribe to the Account.UPDATED webhook: This webhook will transmit updates on the status of the account. Once all system checks pass, any underlying transactions have completed and any products in use have been deactivated, the customer’s account will be set to a status of CLOSED.
payment_method after the closure initiation has already been completed. Integrators can now PATCH the account closure with the new payment_method and destination_id details if necessary by using the PATCH /v2/accounts/account_id/initiate_closure endpoint.
Please see the webhooks guide for further details on subscribing to the ACCOUNT.UPDATED webhook.
Account Closure FAQs
- Will we be able to transfer the funds in multiple payments?
Yes. We are able to transfer the funds in multiple payments. - Will the balance transfer happen immediately?
If there are no transactions on hold and no pending transactions, then the transfer will happen immediately after the Initiate Closure API was called. If there are transactions on hold or pending transactions, then the transfer will occur after these clear and the account will be closed. - What happens if there is a return / refund after the account is closed?
Synctera will work with your Sponsor Bank to send a check to the last known address for any funds that come in after the account is closed or follow the bank process. - Can customers still raise a dispute after the account is closed?
Yes, customers can raise a dispute after the account is closed. For card transactions, disputes can be filed up to 60 days from the statement date of the transaction in question. For ACH transactions, disputes can be raised up to 60 days from the settlement date of the transaction in question. If the investigation results in a chargeback, Synctera will manually send a check to the last known address for the transaction amount. - Will a statement be issued after the account is closed?
Yes a statement will be issued at the end of the month, even after the account is closed. Smart cards will remain IN_CLOSING, until the customer pays off the balance listed in the statement generated at the end of the month. - Are there any controls to ensure that the funds are sent to a valid recipient?
Although we enforce industry standard fraud controls in our platform, we do not verify that the recipient is valid. We encourage the fintech to verify the recipient is valid, using its own data and or third party platforms. - If you close an account without any underlying pending transactions or anything else that needs to be closed - how long until you receive the ‘closed’ webhook event?
You will receive it the next business day.

