()
| 70 | |
| 71 | @router.post("/api/accounts/{account_id}/bootstrap") |
| 72 | def bootstrap_account(account_id: str, refresh_fingerprint: bool = Query(default=False)): |
| 73 | return success(payment_service.bootstrap_account(account_id, refresh_fingerprint=refresh_fingerprint)) |
| 74 | |
| 75 | |
| 76 | @router.get("/api/accounts/{account_id}/products") |
nothing calls this directly
no test coverage detected