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.
Modern Treasury validates routing numbers when creating a Routing Detail object to make sure they are acceptable.
Attribute | Description |
---|---|
id string | The ID of the routing detail. |
payment_type | If the routing detail is to be used for a specific payment type this field will be populated, otherwise |
routing_number | The routing number of the bank. |
bank_name | The name of the bank. |
bank_address | The address of the bank. |
live_mode | This field will be true if this object was created with a production API key or false if created with a test API key. |
routing_number_type | One of |
{
"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"
}