Tenant Setup
Configure your PayStream tenant for your business needs.
Tenant Settings
Access tenant settings via the dashboard or API:
GET /api/v1/tenants/me
bash
curl -X GET https://api.paystream.fi/api/v1/tenants/me \
-H "Authorization: Bearer psk_test_xxx"Branding
Customize the recipient experience:
json
{
"branding": {
"name": "Your Brand",
"primaryColor": "#3E3EFF",
"logo": "https://your-brand.com/logo.png"
}
}Terminology
Customize labels for recipients and payments:
json
{
"terminology": {
"recipient": "driver",
"payment": "payout"
}
}Payment Settings
Configure payment behavior:
json
{
"paymentSettings": {
"enabledRails": ["standard", "same_day_ach", "rtp"],
"defaultRail": "standard",
"aiRoutingMode": "balanced"
}
}Webhooks
Set up webhooks for real-time notifications. See Webhooks.