Payout methods
How Atriux gets earnings out of the platform and into your hands. Set up a method on the Creator dashboard whenever you have a balance you want to withdraw — you don't need it at signup.
Two methods (currently)
PayPal
Just a PayPal email. We send via PayPal Payouts API. Funds typically arrive in your PayPal account within 1-2 business days of dispatch.
What we store:your PayPal email, plain text. (Email isn't sensitive — it's just an address.)
US bank account
Routing + account number for direct ACH deposit. Coming soon — we'll dispatch via Tremendous or Stripe ACH (the integration that wins on operational simplicity).
What we store: last 4 digits of routing + account in plain text (for display on /creatorso you can verify what's on file). Full numbers encrypted at rest with AES-256-GCM. Decryption only happens server-side at payout-dispatch time.
Setting up a method
- Open Creator dashboard.
- Find the Payout method card.
- Click Add payout method if you don't have one yet, or Change if you want to switch.
- Pick the PayPal or US Bank tab. Fill in the field(s). Click Save method.
- The card now shows your method (masked — e.g.
•••• 1234 / •••• 5678for bank).
Switching methods doesn't affect your pending balance — it just changes where the next payout dispatches.
Dispatch schedule
Weekly. Cron runs every Monday at 9 a.m. UTC. The dispatcher:
- Queries every creator with
pending_balance_cents > 0ANDpayout_method IS NOT NULLAND not blocked by tax-form requirement. - Groups by method (PayPal batch is most common).
- Inserts a
payoutsrow with statuspendingfor each creator. - Calls the provider API. Updates the row to
sentwith the provider's batch / item ID. - Listens for the provider's webhook events, updates the row to
paid/failed/returnedas they arrive. - On
paid: moves the amount frompending_balance_cents→total_paid_cents.
Payout history
Visible on /creator — most recent 10 payouts with status, amount, method, and timestamp. Failed or returned payouts surface a reason; the amount stays in pending until the next dispatch.
Minimum payout
Currently $5 USD = 50 credits. Below that, your balance accumulates until the next dispatch where you'd cross the threshold. (PayPal and ACH both have per-transaction fees that make tiny payouts uneconomical.)
Paused payouts
Two reasons your dispatch could pause:
- No payout method set. Pending balance keeps accumulating; just add a method and the next cycle dispatches.
- Tax-form gate (US, ≥ $600 lifetime). See Tax forms. Submit the W-9 in-platform; payouts resume on the next cycle.
Removing a method
Click Removeon the payout-method card. The encrypted values are zeroed out. You won't receive payouts again until you set a new method. Your pending balance stays put.
What we don't store
- SSN. Not at signup. Only collected on the W-9 form when lifetime crosses $600 (see Tax forms). Encrypted at rest.
- Business website / industry classification. Never asked for. Atriux is intentionally lighter than Stripe Connect's onboarding.
- Tax ID for non-US creators. International payouts roll out post-launch with a separate flow.
Next: Tax forms →