Account: {
    id: string;
    livemode: boolean;
    displayName: string | null;
    status: AccountStatus;
    institutionName: string;
    last4: string | null;
    created: number;
    balance: Balance | null;
    balanceRefresh: BalanceRefresh | null;
    category: Category;
    subcategory: Subcategory;
    permissions: Permission[] | null;
    supportedPaymentMethodTypes: PaymentMethodType[];
}

Type declaration

  • id: string

    A unique ID for this Financial Connections Account.

  • livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

  • displayName: string | null
  • status: AccountStatus

    The current status of the account. Either active, inactive, or disconnected.

  • institutionName: string
  • last4: string | null
  • created: number

    The UNIX timestamp (in milliseconds) of the date this account was created.

  • balance: Balance | null

    The balance of this account.

  • balanceRefresh: BalanceRefresh | null

    The last balance refresh. Includes the timestamp and the status.

  • category: Category

    The category of this account, either cash, credit, investment, or other.

  • subcategory: Subcategory

    The subcategory of this account, either checking, credit_card, line_of_credit, mortgage, savings, or other.

  • permissions: Permission[] | null

    Permissions requested for accounts collected during this session.

  • supportedPaymentMethodTypes: PaymentMethodType[]

    The supported payment method types for this account.

MMNEPVFCICPMFPCPTTAAATR