Increase.ACHTransfers.ACHTransfer.Return (Increase v1.0.0)

Copy Markdown View Source

If your transfer is returned, this will contain details of the return.

Fields

  • created_at - The ISO 8601 date and time at which the transfer was created.
  • raw_return_reason_code - The three character ACH return code, in the range R01 to R85.
  • return_reason_code - Why the ACH Transfer was returned. This reason code is sent by the receiving bank back to Increase.
  • trace_number - A 15 digit number that was generated by the bank that initiated the return. The trace number of the return is different than that of the original transfer. ACH trace numbers are not unique, but along with the amount and date this number can be used to identify the ACH return at the bank that initiated it.
  • transaction_id - The identifier of the Transaction associated with this return.
  • transfer_id - The identifier of the ACH Transfer associated with this return.

Summary

Types

t()

@type t() :: %Increase.ACHTransfers.ACHTransfer.Return{
  created_at: DateTime.t(),
  raw_return_reason_code: String.t(),
  return_reason_code: String.t(),
  trace_number: String.t(),
  transaction_id: String.t(),
  transfer_id: String.t()
}