Skip to main content
POST
/
payments
/
v1
/
payouts
Create payout
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": {}
}
'

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Body

application/json
from_account_id
string
required

Source account

amount
integer
required

Amount in cents

destination_type
enum<string>
required
Available options:
bank_account,
card
party_id
string

Recipient party (optional)

currency
string
default:usd
memo
string
metadata
object

Response

200

Payout created