Passa al contenuto
Crea account
o
Accedi
Il logo della documentazione Stripe
/
Chiedi all'IA
Crea un account
Accedi
Inizia
Pagamenti
Ricavi
Per piattaforme e marketplace
Gestione del denaro
Risorse per sviluppatori
Panoramica
Inizia a utilizzare Connect
Concetti di base sull'integrazione
Esempi di integrazione
Gestione dell'account
Attivare gli account
Configurare le dashboard degli account
Lavorare con tipi di account connessi
Elaborazione pagamenti
Accetta pagamenti
Inviare pagamenti agli account
    Bonifici agli account connessi
    Gestire conti per bonifici per gli account connessi
    Gestire la frequenza dei bonifici
    Bonifici manuali
    Storni di bonifici
    Voci dell'estratto conto dei bonifici
    Regolamento multi-valuta
    Instant Payouts
    Bonifici transfrontalieri
    Bonifici in stablecoin
Amministrazione piattaforma
Gestire la piattaforma Connect
Moduli fiscali per la piattaforma Connect
Pagina inizialePer piattaforme e marketplacePay out to accounts

Using manual payouts

Send manual payouts to your connected accounts.

If you set the value of schedule.interval to manual, we hold funds in the accountholder’s balance until you specify otherwise. You must pay out the funds within the time period specified below, based on the business’s country:

CountryHolding Period
Thailand10 days
United States2 years
All other countries90 days
Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node
Go
.NET
No results
curl https://api.stripe.com/v1/accounts/
{{CONNECTED_ACCOUNT_ID}}
\ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -d "settings[payouts][schedule][interval]"=manual

To trigger a payout of these funds, use the Payouts API. The Payouts API is only for moving funds from a connected Stripe account’s balance into their external account. To move funds between the platform and a connected account, use separate charges and transfers or destination charges.

Nota

Escrow has a precise legal definition, and Stripe doesn’t provide escrow services or support escrow accounts. However, you can control payout timing through manual payouts, which allow you to delay payouts to certain accounts. When using manual payouts, you must pay out funds within the time frame for the business’s country.

Delayed payouts can be useful when a delivery is delayed or when there’s a possibility of a refund.

Regular payouts

The following example sends 10 USD from a connected account’s Stripe balance to their external account:

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node
Go
.NET
No results
curl https://api.stripe.com/v1/payouts \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -H "Stripe-Account:
{{CONNECTED_ACCOUNT_ID}}
"
\ -d amount=1000 \ -d currency=usd

With a standard payout, you can move an amount up to the user’s available balance. To find that amount, perform a retrieve balance call on their behalf.

Stripe tracks balance contributions from different payment sources in separate balances. The retrieve balance response breaks down the components of each balance by source type. For example, to create a payout specifically for a non-credit-card balance, specify the source_type in your request.

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node
Go
.NET
No results
curl https://api.stripe.com/v1/payouts \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -H "Stripe-Account:
{{CONNECTED_ACCOUNT_ID}}
"
\ -d amount=24784 \ -d currency=usd \ -d source_type=bank_account

While individual balance components can go negative (such as through refunds or chargebacks), you can’t create payouts for greater than the aggregate available balance.

Questa pagina è stata utile?
SìNo
  • Hai bisogno di aiuto? Contatta l'assistenza clienti.
  • Partecipa al nostro programma di accesso anticipato.
  • Dai un'occhiata al nostro registro delle modifiche.
  • Domande? Contattaci.
  • LLM? Leggi llms.txt.
  • Realizzato da Markdoc