The Payout object
Attributes
id(string) Unique identifier for the object.object(string) String representing the object’s type. Objects of the same type share the same value.amount(integer) The amount (in the smallest currency unit) that transfers to your bank account or debit card.application_fee(string, nullable, expandable (can be expanded into an object with theexpandrequest parameter)) The application fee (if any) for the payout. See the Connect documentation for details.application_fee_amount(integer, nullable) The amount of the application fee (if any) requested for the payout. See the Connect documentation for details.arrival_date(timestamp) Date that you can expect the payout to arrive in the bank. This factors in delays to account for weekends or bank holidays.automatic(boolean) Returnstrueif the payout is created by an automated payout schedule andfalseif it’s requested manually.balance_transaction(string, nullable, expandable (can be expanded into an object with theexpandrequest parameter)) ID of the balance transaction that describes the impact of this payout on your account balance.created(timestamp) Time at which the object was created. Measured in seconds since the Unix epoch.currency(enum) Three-letter ISO currency code, in lowercase. Must be a supported currency.description(string, nullable) An arbitrary string attached to the object. Often useful for displaying to users.destination(string, nullable, expandable (can be expanded into an object with theexpandrequest parameter)) ID of the bank account or card the payout is sent to.failure_balance_transaction(string, nullable, expandable (can be expanded into an object with theexpandrequest parameter)) If the payout fails or cancels, this is the ID of the balance transaction that reverses the initial balance transaction and returns the funds from the failed payout back in your balance.failure_code(enum, nullable) Error code that provides a reason for a payout failure, if available. Possible enum values:account_closedThe bank account has been closed.account_frozenThe bank account has been frozen.bank_account_restrictedThe bank account has restrictions on either the type, or the number, of payouts allowed. This normally indicates that the bank account is a savings or other non-checking account.bank_account_unusableThe bank notified us that the bank account is unusable.bank_ownership_changedThe destination bank account is no longer valid because its branch has changed ownership.could_not_processThe bank could not process this payout.debit_not_authorizedDebit transactions are not approved on the bank account. (Stripe requires bank accounts to be set up for both credit and debit payouts.)declinedThe bank has declined this transfer. Please contact the bank before retrying.incorrect_account_holder_addressYour bank notified us that the bank account holder address on file is incorrect.incorrect_account_holder_nameYour bank notified us that the bank account holder name on file is incorrect.incorrect_account_holder_tax_idYour bank notified us that the bank account holder tax ID on file is incorrect.incorrect_account_typeYour bank notified us that the bank account type on file is incorrect. This value can only be checking or savings in most countries. In Japan, it can only be futsu or toza.insufficient_fundsYour Stripe account has insufficient funds to cover the payout.invalid_account_numberThe routing number seems correct, but the account number is invalid.invalid_account_number_lengthYour bank notified us that the bank account number is too long.invalid_currencyThe bank was unable to process this payout because of its currency. This is probably because the bank account cannot accept payments in that currency.no_accountThe bank account details on file are probably incorrect. No bank account could be located with those details.unsupported_cardThe bank no longer supports payouts to this card.
failure_message(string, nullable) Message that provides the reason for a payout failure, if available.livemode(boolean) If the object exists in live mode, the value istrue. If the object exists in test mode, the value isfalse.metadata(object, nullable) Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.method(string) The method used to send this payout, which can bestandardorinstant.instantis supported for payouts to debit cards and bank accounts in certain countries. Learn more about bank support for Instant Payouts.original_payout(string, nullable, expandable (can be expanded into an object with theexpandrequest parameter)) If the payout reverses another, this is the ID of the original payout.payout_method(string, nullable) ID of the v2 FinancialAccount the funds are sent to.reconciliation_status(enum) Ifcompleted, you can use the Balance Transactions API to list all balance transactions that are paid out in this payout. Possible enum values:completedThe Balance Transactions paid out in this payout. You can query it with the Balance Transactions API.in_progressYou can query the Balance Transactions paid out in this payout soon.not_applicableWe don’t support listing Balance Transactions for this payout. We only support this for standard automatic payouts.
reversed_by(string, nullable, expandable (can be expanded into an object with theexpandrequest parameter)) If the payout reverses, this is the ID of the payout that reverses this payout.source_type(string) The source balance this payout came from, which can be one of the following:card,fpx, orbank_account.statement_descriptor(string, nullable) Extra information about a payout that displays on the user’s bank statement.status(string) Current status of the payout:paid,pending,in_transit,canceledorfailed. A payout ispendinguntil it’s submitted to the bank, when it becomesin_transit. The status changes topaidif the transaction succeeds, or tofailedorcanceled(within 5 business days). Some payouts that fail might initially show aspaid, then change tofailed.trace_id(object, nullable) A value that generates from the beneficiary’s bank that allows users to track payouts with their bank. Banks might call this a “reference number” or something similar.trace_id.status(string) Possible values arepending,supported, andunsupported. Whenpayout.statusispendingorin_transit, this will bepending. When the payout transitions topaid,failed, orcanceled, this status will becomesupportedorunsupportedshortly after in most cases. In some cases, this may appear aspendingfor up to 10 days afterarrival_dateuntil transitioning tosupportedorunsupported.trace_id.value(string, nullable) The trace ID value iftrace_id.statusissupported, otherwisenil.
type(enum) Can bebank_accountorcard.
The Payout object
json
{
"id": "po_1OaFDbEcg9tTZuTgNYmX0PKB",
"object": "payout",
"amount": 1100,
"arrival_date": 1680652800,
"automatic": false,
"balance_transaction": "txn_1OaFDcEcg9tTZuTgYMR25tSe",
"created": 1680648691,
"currency": "usd",
"description": null,
"destination": "ba_1MtIhL2eZvKYlo2CAElKwKu2",
"failure_balance_transaction": null,
"failure_code": null,
"failure_message": null,
"livemode": false,
"metadata": {},
"method": "standard",
"original_payout": null,
"reconciliation_status": "not_applicable",
"reversed_by": null,
"source_type": "card",
"statement_descriptor": null,
"status": "pending",
"type": "bank_account"
}