An account_capability
object holds information necessary for originating payments of specific types and directions out of a given bank account. An example of this includes holding ACH Company ID identifiers, which are unique references assigned by banks to an entity for tracking and verification of payment purposes. Account Capabilities are directly tied to the capabilities enabled by the bank for the user, and Modern Treasury does not allow users to create or set an account_capability
that does not exist at the bank.
Attribute | Description |
---|---|
id string | Unique identifier for the capability. |
direction string | One of credit or debit . The direction of money movement this capability is responsible for. |
identifier string | A unique reference assigned by your bank for tracking and recognizing payment files. It is important this is formatted exactly how the bank assigned it. |
payment_type string | The type of payment this capability is responsible for originating. The full list of possible types is at Payment Orders. |
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": "account_capability",
"payment_type": "wire",
"live_mode": true,
"identifier": "9140032",
"created_at": "2019-11-09T00:11:07Z",
"updated_at": "2019-11-09T00:11:07Z",
"discard_at": null
}