Increase.IntrafiExclusions.IntrafiExclusion (Increase v1.0.0)

Copy Markdown View Source

Certain institutions may be excluded per Entity when sweeping funds into the IntraFi network. This is useful when an Entity already has deposits at a particular bank, and does not want to sweep additional funds to it. It may take 5 business days for an exclusion to be processed.

Fields

  • id - The identifier of this exclusion request.
  • bank_name - The name of the excluded institution.
  • created_at - The ISO 8601 date and time at which the exclusion was created.
  • entity_id - The entity for which this institution is excluded.
  • excluded_at - When this was exclusion was confirmed by IntraFi.
  • fdic_certificate_number - The Federal Deposit Insurance Corporation's certificate number for the institution.
  • 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.
  • status - The status of the exclusion request.
  • submitted_at - When this was exclusion was submitted to IntraFi by Increase.
  • type - A constant representing the object's type. For this resource it will always be intrafi_exclusion.

Summary

Types

t()

@type t() :: %Increase.IntrafiExclusions.IntrafiExclusion{
  bank_name: String.t() | nil,
  created_at: DateTime.t(),
  entity_id: String.t(),
  excluded_at: DateTime.t() | nil,
  fdic_certificate_number: String.t() | nil,
  id: String.t(),
  idempotency_key: String.t() | nil,
  status: String.t(),
  submitted_at: DateTime.t() | nil,
  type: String.t()
}