Create a payout to send money to an external bank account
curl --request POST \
--url https://api.case.dev/payments/v1/payouts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from_account_id": "<string>",
"amount": 123,
"destination_type": "bank_account",
"party_id": "<string>",
"currency": "usd",
"memo": "<string>",
"metadata": {}
}
'API key starting with sk_case_
Payout created
Was this page helpful?
curl --request POST \
--url https://api.case.dev/payments/v1/payouts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from_account_id": "<string>",
"amount": 123,
"destination_type": "bank_account",
"party_id": "<string>",
"currency": "usd",
"memo": "<string>",
"metadata": {}
}
'