Skip to main content

Resources

This page documents the JSON:API resource schemas related to deposit accounts.

DepositAccount

The DepositAccount resource represents a bank account maintained by a financial institution where customers can deposit and withdraw money.

For the complete resource schema including all attributes and relationships, see DepositAccount.

Key Attributes

AttributeTypeDescription
createdAtRFC3339 Date stringThe date the resource was created.
namestringName of the account holder.
statusstringStatus of the account: Open, Frozen, or Closed.
depositProductstringThe name of the deposit product.
routingNumberstringRouting number, together with the account number form the identifier of the account on the ACH network.
accountNumberstringAccount number, together with the routing number form the identifier of the account on the ACH network.
balanceintegerThe balance amount (in cents).
availableintegerThe available balance for spending (in cents).
holdintegerThe amount that is held (in cents).
tagsobjectSee Tags.

AccountHold

The AccountHold resource represents a temporary reservation of funds in an account balance, making that amount unavailable for other transactions while the hold is active.

For the complete resource schema including all attributes and relationships, see AccountHold.

Key Attributes

AttributeTypeDescription
createdAtRFC3339 Date stringThe date the resource was created.
updatedAtRFC3339 Date stringThe date the resource was last updated.
amountintegerThe amount (in cents) being held.
statusstringStatus of the hold: Active, Released, or PartiallyReleased.
descriptionstringDescription of the account hold.
expiredAtRFC3339 Date stringOptional. The date the hold will be automatically released.
tagsobjectSee Tags.

AccountEndOfDay

The AccountEndOfDay resource represents an account's balance at the end of a business day. This is useful for tracking balance history over time and creating balance charts.

For the complete resource schema including all attributes and relationships, see AccountEndOfDay.

Key Attributes

AttributeTypeDescription
dateISO Local Date stringThe date of the end-of-day balance.
balanceintegerThe account balance (in cents) at the end of the day.
availableintegerThe available balance (in cents) at the end of the day.
holdintegerThe held amount (in cents) at the end of the day.