Connect Wymar FCU member accounts, balances and statements to your stack — under authorized consent
Wymar Federal Credit Union, headquartered in Geismar, Louisiana, runs on the CU*Answers It's Me 247 online banking platform layered on CU*BASE core. Its mobile app exposes balance lookups, transaction history, mobile remote deposit capture (mRDC), bill pay and member-to-member transfers. We deliver compliant API shims around these flows so a third-party finance app, ERP or aggregator can read member data without scraping fragile web forms.
Feature modules we deliver
Member login & MFA
An authenticated session layer that wraps the It's Me 247 login challenge. Members consent once; the integration stores a refreshable token and replays MFA challenges only when CU*Answers requires step-up. Used by personal-finance dashboards that want a stable connection without daily re-auth friction.
Balance & account list
One call returns every share, share draft, money market, certificate and loan attached to a member number, including type code, nickname, available balance, current balance and pledge holds. Useful for net-worth dashboards and Personal Finance aggregation parity with the It's Me 247 "link external accounts" feature.
Transaction history & statement
Date-bounded transaction lists with transaction code, posted date, effective date, description, ACH counterparty, amount and running balance. Pages stably so reconciliation jobs can re-pull last 90 days without duplicates. Cross-month statement exports map cleanly to FDX 5.x objects for aggregator handoff.
Mobile remote deposit capture
A submission endpoint that accepts front/back check images plus the destination share, returns a deposit ticket id and emits a webhook when funds clear. Implements the 2024–2025 Wymar instant-deposit path for checks under $500 with no scheduled processing wait, and the standard hold schedule for larger checks.
Transfers & Nationwide CU Access
Member-to-member, member-to-self and shared-branch transfers through the Nationwide CU Access partnership that lets Wymar members transact at roughly 5,000 partner branches. The API normalizes routing, fee schedules and posting windows so back-office systems do not need to model each network separately.
Bill pay & scheduled payments
Read scheduled and recurring bill payments, post one-time payments and cancel pending items. Mirrors the It's Me 247 Bill Pay capabilities so finance copilots can suggest "pay this on the 1st" without dropping members back into the native app.
Data available for integration
Wymar FCU's mobile experience surfaces a focused set of structured member data. The table below maps each data class to its source screen, typical granularity and the downstream use case where it pays for itself.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Member profile | It's Me 247 "My Info" / contact | Per member number; name, address, email, phone | KYC refresh, marketing suppression lists |
| Account list & balances | Account summary screen | Per sub-account (share, draft, CD, loan) | Net-worth dashboards, balance alerts |
| Transaction history | Account detail / statement | Per posting line, daily; codes & descriptions | Bookkeeping, reconciliation, expense analytics |
| Statements (PDF) | eStatements module | Monthly per account | Audit trails, mortgage underwriting |
| Bill-pay payees & schedule | It's Me 247 Bill Pay | Per payee, per scheduled payment | Cashflow forecasting, smart-pay copilots |
| Mobile deposit history | mRDC module | Per check, image + status | Funds-availability prediction, hold tracking |
| Loan & CD terms | Loan / certificate detail | Per loan / per certificate; rate, term, payoff | Debt consolidation analysis, maturity alerts |
| Shared-branch activity | Nationwide CU Access | Per transaction; partner branch id | Travel-aware fraud rules, branch heatmaps |
Typical integration scenarios
1. Personal-finance aggregation parity
Context: A Wymar member uses a budgeting app and wants their FCU accounts to refresh as reliably as their megabank accounts. Data / API: account list, transaction history (90 days rolling), and statement PDF. OpenFinance mapping: emits FDX accounts, transactions and statements resources; the aggregator consumes them through a standard OAuth-style token rather than screen-scraping It's Me 247.
2. Small-business bookkeeping sync
Context: A Geismar-area contractor banks a business checking and an auto loan at Wymar and runs QuickBooks. Data / API: transaction history with full memo lines, bill-pay schedule, and loan amortization. OpenData mapping: nightly export pushes posted transactions to QuickBooks Online via OFX, while loan amortization feeds a "long-term liabilities" worksheet so the member's books reconcile without manual entry.
3. Funds-availability copilot for mobile deposits
Context: Members want to know when a deposited check will clear so they can avoid overdrafts. Data / API: mRDC submission, deposit status webhook, and hold schedule. OpenFinance mapping: the webhook fan-outs into a member-facing notification that distinguishes the 2024–2025 instant path for sub-$500 checks from the standard hold path, with cleared/available timestamps surfaced as ISO-8601 fields.
4. Mortgage underwriting evidence
Context: A member applies for a mortgage at a third-party lender and needs to share two months of statements plus current balance. Data / API: consented statement export and a point-in-time balance snapshot. OpenBanking mapping: a one-shot consent issues a short-lived token; the lender pulls FDX-shaped statements and an accountVerification object, then the token expires. No password ever leaves the member's hands.
5. Member-360 dashboard for back-office staff
Context: A Wymar service representative wants one screen showing every product a member holds plus their last 30 days of activity across share, share draft, loan and Nationwide CU Access transactions. Data / API: account list, transaction stream, and shared-branch activity. OpenData mapping: normalized event objects flow into the credit union's CRM so reps can see context without bouncing between CU*BASE GOLD windows.
Technical implementation
The implementation usually sits as a thin OAuth-style gateway in front of the member's authorized It's Me 247 session. Three snippets below illustrate the core surfaces — authentication, statement query and a deposit webhook — with field names that mirror what you actually see in CU*Answers integrations and FDX.
1) Member login & token exchange
POST /api/v1/wymarfcu/auth/login
Content-Type: application/json
{
"member_number": "0123456",
"credential": "<encrypted>",
"device_id": "ios-9F2A-..."
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_8c1...",
"expires_in": 1800,
"mfa_required": false,
"session_scope": ["accounts.read", "transactions.read", "deposit.write"]
}
2) Statement / transaction query
POST /api/v1/wymarfcu/statement
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: application/json
{
"account_id": "SH-000",
"from_date": "2026-03-01",
"to_date": "2026-04-30",
"page": 1,
"page_size": 100,
"format": "fdx"
}
200 OK
{
"account": {"id":"SH-000","type":"SHARE","available_balance":1842.55},
"transactions": [
{"posted":"2026-04-28","amount":-42.10,"code":"DEBIT_CARD",
"description":"ROUSES MARKET GEISMAR LA","running_balance":1842.55},
...
],
"page_info": {"page":1, "has_more":true, "next_cursor":"c2..."}
}
3) Mobile deposit webhook
POST https://your-app.example/hooks/wymarfcu
X-Signature: sha256=...
{
"event": "mrdc.deposit.cleared",
"deposit_id": "mrdc_9f12",
"member_number": "0123456",
"account_id": "SH-010",
"amount": 312.75,
"path": "instant_under_500",
"submitted_at": "2026-05-09T14:02:11Z",
"available_at": "2026-05-09T14:02:14Z"
}
// Verify HMAC, then post to ledger.
// Retries: exponential, 5 attempts, idempotency key = deposit_id.
Auth uses short-lived bearer tokens with a refresh window, request bodies are JSON, and webhooks are HMAC-signed. Errors follow a stable envelope (code, message, retriable) so client SDKs can implement back-off without parsing English strings. We also ship a sandbox seed with one member, three sub-accounts, and a 12-month transaction history that covers ACH, debit card, share-draft and Nationwide CU Access lines.
Compliance & privacy
Regulatory posture
Integrations are designed to align with the U.S. open-banking direction set by the CFPB Personal Financial Data Rights Rule (Section 1033). The CFPB stayed the tiered compliance schedule in July 2025 and opened an accelerated rulemaking in late 2025, so production integrations follow the spirit of the rule — consumer consent, revocability, secure developer interfaces — without assuming a fixed date. Smaller credit unions (≤ $850M in assets, which includes Wymar) are explicitly out of the mandatory compliance bucket, but adopting the same shape now means the data is portable when the rule resettles.
Privacy & security controls
- Member consent recorded with scope, timestamp and revocation endpoint (GLBA-aligned).
- NCUA Part 748 security-program expectations baked into the deployment guide.
- Data minimization: only the requested fields leave the gateway; full transaction blobs stay inside.
- BSA / AML hooks for transaction streams that feed monitoring tools.
- FDX schema mapping so aggregator hand-offs avoid bespoke field translation.
Data flow & architecture
A typical Wymar FCU integration pipeline looks like:
- Member-facing client (mobile app, web dashboard, accounting tool) requests data.
- Consent & auth gateway performs OAuth-style token exchange and stores scope + revocation state.
- Protocol adapter replays the It's Me 247 / CU*BASE session, normalizes balances, transactions and deposit events.
- FDX-shaped storage persists last-N-days of transactions and statement PDFs with idempotent keys.
- Egress APIs & webhooks serve aggregators, ERPs and member-facing analytics, signed and rate-limited.
The adapter is the only component that touches credentials; everything downstream sees only tokenized references and FDX-shaped objects, which keeps the blast radius small if a partner key leaks.
Market positioning & user profile
Wymar Federal Credit Union is a community credit union headquartered in Geismar, Louisiana, serving members who live, work, worship or attend school in Ascension Parish and surrounding industrial corridors. Membership skews toward retail consumers and small-business owners tied to the area's petrochemical employers, supported by a small set of physical branches plus a nationwide presence through Nationwide CU Access and CO-OP-style shared-branch arrangements. Mobile-first delivery is on Android and iOS via the It's Me 247 app; desktop members hit the same platform on the web. Demand from third parties for Wymar data tends to come from local accountants, mortgage brokers and the personal-finance aggregators that members already use elsewhere — exactly the use cases U.S. open banking under CFPB Section 1033 is designed to enable.
Screenshots
Click any thumbnail to view a larger version.
Similar apps & integration landscape
Members who hold accounts at Wymar FCU often also bank with one of the institutions below. Each is included to show how the same OpenBanking patterns apply across the U.S. credit-union ecosystem; we do not rank or critique them.
About us
OpenFinance Lab is an independent studio focused on mobile-app protocol analysis and OpenBanking/OpenData integration. The team blends engineers from U.S. community banks, credit-union service organizations, payment gateways and cloud platforms, and ships compliant API layers that other shops won't touch because they require careful consent and regulator-aware design.
- Credit union and community-bank integrations, including CU*BASE / It's Me 247 deployments.
- FDX 5.x schema work for aggregators, fintechs and Section 1033-aware client apps.
- Custom Python, Node.js and Go SDKs plus test harnesses with sandbox seed data.
- End-to-end pipeline: protocol analysis → build → validation → compliance review.
- Source code delivery from $300 — runnable API source code and full documentation, paid only after delivery upon satisfaction.
- Pay-per-call API billing — hosted endpoints with usage-based pricing and no upfront fee.
Contact
For quotes, NDAs or to submit your Wymar FCU integration scope (data types, expected call volume, hosting preference), open our contact page.
Engagement workflow
- Scope confirmation: which data types and which screens of the Wymar FCU app you need exposed (login, balances, statements, mRDC, transfers).
- Protocol analysis and API design (2–5 business days), covering It's Me 247 challenge flow and CU*BASE field mapping.
- Build and internal validation (3–8 business days), with sandbox member seed.
- Docs, code samples, OpenAPI spec and test cases (1–2 business days).
- Hand-off and pilot: typical first delivery 5–15 business days; institutional approvals can extend timelines.
FAQ
What do you need from me to start a Wymar FCU integration?
How long does a first Wymar FCU API delivery take?
How do you handle compliance for credit-union data?
Can you export Wymar FCU statements to accounting tools?
📱 Original app overview (appendix)
Wymar Federal Credit Union's mobile app, published under package id com.wymarfcu.wymarfcu, gives members convenient access to the credit union's mobile website, mobile banking platform, branch and contact information, and help. It is the front door to a community credit union headquartered in Geismar, Louisiana, with a small branch footprint plus nationwide reach via the Nationwide CU Access shared-branch network.
- Sign in to It's Me 247 online banking on Apple and Android devices.
- Check balances, view transactions and transfer funds between share, share draft, money market and certificate accounts.
- Pay bills online with one-time or recurring schedules, including AutoPay on selected dates.
- Deposit checks via mobile remote deposit capture; the 2024–2025 update added an instant path for checks under $500 with no scheduled processing wait.
- Submit loan applications and open additional accounts without visiting a branch.
- Use the Personal Finance tab to link and view external accounts from other institutions for a full financial picture.
- Locate branches and ATMs nationwide through the CU Access partnership.
- Access help, contact information and member services directly from the app.