Increase.ExternalAccounts.ExternalAccount (Increase v1.0.0)

Copy Markdown View Source

External Accounts represent accounts at financial institutions other than Increase. You can use this API to store their details for reuse.

Fields

  • id - The External Account's identifier.
  • account_holder - The type of entity that owns the External Account.
  • account_number - The destination account number.
  • created_at - The ISO 8601 date and time at which the External Account was created.
  • description - The External Account's description for display purposes.
  • funding - The type of the account to which the transfer will be sent.
  • idempotency_key - The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
  • routing_number - The American Bankers' Association (ABA) Routing Transit Number (RTN).
  • status - The External Account's status.
  • type - A constant representing the object's type. For this resource it will always be external_account.

Summary

Types

t()

@type t() :: %Increase.ExternalAccounts.ExternalAccount{
  account_holder: String.t(),
  account_number: String.t(),
  created_at: DateTime.t(),
  description: String.t(),
  funding: String.t(),
  id: String.t(),
  idempotency_key: String.t() | nil,
  routing_number: String.t(),
  status: String.t(),
  type: String.t()
}