# The PayoutMethod object

### The PayoutMethod object

```json
{
  "id": "usba_test_61S8MLMQAjFLoPjqt16QsOpAPpE97EJALhqt1U5mCNB2",
  "object": "v2.money_management.payout_method",
  "available_payout_speeds": [
    "standard"
  ],
  "bank_account": {
    "archived": false,
    "bank_name": "Test Bank",
    "country": "US",
    "enabled_delivery_options": [
      "local"
    ],
    "last4": "6789",
    "routing_number": "110000000",
    "supported_currencies": [
      "usd"
    ]
  },
  "created": "2025-03-04T16:32:04.907Z",
  "latest_outbound_setup_intent": "osi_test_61S8MLMXLJbg85kWm16QsOpAPpE97EJALhqt1U5mCXrk",
  "type": "bank_account",
  "usage_status": {
    "payments": "eligible",
    "transfers": "eligible"
  }
}
```

## Attributes

- `id` (string)
  ID of the PayoutMethod object.

- `object` (string, value is "v2.money_management.payout_method")
  String representing the object’s type. Objects of the same type share the same value of the object field.

- `available_payout_speeds` (array of enums)
  A set of available payout speeds for this payout method.
Possible enum values:
  - `instant`
    Instant.

  - `standard`
    Standard.

- [`bank_account`](https://docs.stripe.com/api/v2/money-management/payout-methods/object.md?query=bank_account&api-version=2025-07-30.preview) (object, nullable)
  The PayoutMethodBankAccount object details.

- [`card`](https://docs.stripe.com/api/v2/money-management/payout-methods/object.md?query=card&api-version=2025-07-30.preview) (object, nullable)
  The PayoutMethodCard object details.

- `created` (timestamp)
  Created timestamp.

- `latest_outbound_setup_intent` (string, nullable)
  ID of the underlying active OutboundSetupIntent object, if any.

- `livemode` (boolean)
  Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.

- `type` (enum)
  The type of payout method.
Possible enum values:
  - `bank_account`
    Bank account.

  - `card`
    Card.

- [`usage_status`](https://docs.stripe.com/api/v2/money-management/payout-methods/object.md?query=usage_status&api-version=2025-07-30.preview) (object)
  Indicates whether the payout method has met the necessary requirements for outbound money movement.
