Skip to content
Select themeSelect language

`POST /api/marketplace/seller/payout-account` — add a payout account to the authenticated user's seller profile.

POST
/api/marketplace/seller/payout-account
curl --request POST \
--url https://example.com/api/marketplace/seller/payout-account \
--header 'Content-Type: application/json' \
--data '{ "beneficiary_name": "example", "bic": "example", "iban_fingerprint": "example", "iban_last4": "example", "payout_method": "example" }'
Media typeapplication/json
object
beneficiary_name
string | null
bic
string | null
iban_fingerprint
string | null
iban_last4
string | null
payout_method
required
string
Examplegenerated
{
"beneficiary_name": "example",
"bic": "example",
"iban_fingerprint": "example",
"iban_last4": "example",
"payout_method": "example"
}
Media typeapplication/json

A payout account linked to a seller profile — bank details for SEPA or a Stripe Connect reference. status tracks verification lifecycle.

object
beneficiary_name
string | null
bic
string | null
created_at
required
string format: date-time
iban_fingerprint
string | null
iban_last4
string | null
id
required
string format: uuid
payout_method
required
string
seller_profile_id
required
string format: uuid
status
required
string
updated_at
required
string format: date-time
verified_at
string | null format: date-time
Examplegenerated
{
"beneficiary_name": "example",
"bic": "example",
"created_at": "2026-04-15T12:00:00Z",
"iban_fingerprint": "example",
"iban_last4": "example",
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"payout_method": "example",
"seller_profile_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"status": "example",
"updated_at": "2026-04-15T12:00:00Z",
"verified_at": "2026-04-15T12:00:00Z"
}