Routing Details

A routing_detail object represents the specific routing information required to transact with someone's bank account. A single bank account in the United States often has different instructions for ACH, domestic wires, and international wires. Using routing details we can encapsulate all these different routing instructions and assign them to a single account.

AttributeDescription
id
string
The ID of the routing detail.
payment_type
string
If the routing detail is to be used for a specific payment type this field will be populated, otherwise null.
routing_number
string
The routing number of the bank.
routing_number_type
string
One of aba, swift, ca_cpa, au_bsb, gb_sort_code, in_ifsc, cnaps
bank_name
string
The name of the bank.
bank_address
object
The address of the bank.
live_mode
boolean
This field will be true if this object was created with a production API key or false if created with a test API key.
{
  "id": "2e90da60-405c-44bc-8b33-2bdb9419afe3",
  "object": "routing_detail",
  "payment_type": null,
  "routing_number": "021000021",
  "routing_number_type": "aba",
  "bank_name": "Gringotts Wizarding Bank",
  "bank_address": {
    "id": "fcf5ebe1-b990-4684-880f-f69c277106bb",
    "object": "address",
    "line1": "6000 Universal Boulevard",
    "line2": null,
    "locality": "Orlando",
    "region": "FL",
    "postal_code": "32819",
    "country": "US"
  },
  "live_mode": true,
  "created_at": "2019-11-09T00:11:07Z",
  "updated_at": "2019-11-09T00:11:07Z"
}