Returns all auto-invest schedules for an account.
cURL
curl --request GET \ --url https://api.bluumfinance.com/v1/wealth/accounts/{account_id}/auto-invest \ --header 'Authorization: Basic <encoded-value>'
{ "schedules": [ { "auto_invest_id": "ai_a1b2c3d4e5f6", "name": "Monthly Investment", "amount": "500.00", "frequency": "monthly", "next_execution": "2025-02-15T09:30:00Z", "status": "active", "last_execution": { "executed_at": "2025-01-15T09:30:00Z", "status": "completed", "amount_invested": "500.00" } }, { "auto_invest_id": "ai_b2c3d4e5f6g7", "name": "Weekly Tech", "amount": "100.00", "frequency": "weekly", "next_execution": "2025-01-20T10:00:00Z", "status": "active" } ], "total_count": 2 }
HTTP Basic Authentication using the API Key as username and API Secret as password.
Filter by status
active
paused
completed
cancelled
Filter by portfolio
Auto-invest schedules retrieved successfully
Show child attributes