Authorized protocol analysis, FDX-aligned data flows, and runnable source code for the Meritrust Colorado (formerly Premier Members CU) member banking app
Meritrust Colorado (package com.premiermemberscu.premiermemberscu) is the consumer banking app for the merged Meritrust Credit Union & Premier Members CU footprint. Following Legal Day One on August 1, 2025, the combined organization serves 200,000+ members across 33 branches in Colorado and Kansas with nearly $4B in assets. Each member session in the app generates structured, high-value financial data — account balances, posted and pending transactions, scheduled bill payments, P2P transfers, recurring schedules, savings-goal progress, and card-status events — all of which can be surfaced to authorized fintechs through compliant, member-permissioned interfaces.
Capture the member login flow used by the Meritrust Colorado app, including device-binding, biometric step-up (Touch ID / Face ID), and refresh-token rotation. Output a documented OAuth-style wrapper your backend can call to obtain a member-scoped access token, with logging hooks for every consent event so a Rule 1033 audit trail is preserved.
Aggregate balances and metadata across checking, savings, certificates, and loan products into a single response — matching what the app shows on its dashboard. Useful for treasury dashboards, member-experience portals, and personal-finance aggregators that need to render a unified household view.
Paged transaction queries with date-range, account, type, and amount filters, plus statement pulls in PDF/CSV/OFX. Supports cash-flow underwriting, accounting sync (QuickBooks, Xero), and dispute/chargeback investigation pipelines that need 24+ months of clean data.
Programmatic access to payee management, scheduled payments, recurring transfers, and pay-other-people flows. Returns settlement status and posts a webhook on completion so your AR/AP, payroll, or rent-collection product stays in sync without polling.
Lock and unlock debit and credit cards, register card-not-present alerts, and subscribe to budget-category, savings-goal, large-transaction, and overdue-payment notifications. Useful for fraud-prevention layers, parental-control fintechs, and high-touch wealth advisors.
Image-capture and submission flow for remote deposit capture, including front/back image normalization, MICR parsing, and deposit-status callbacks. Pairs well with small-business invoicing apps that want to convert paid checks into reconciled deposits without manual handoff.
The Meritrust Colorado app surfaces a rich set of structured records that map cleanly to FDX v6.4 entities and CFPB Rule 1033 covered-data categories. Below is a working inventory we use during scoping.
| Data type | Source (in-app surface) | Granularity | Typical downstream use |
|---|---|---|---|
| Account directory & balances | Account snapshot dashboard | Per-account, near-real-time | Net-worth dashboards, treasury aggregation, eligibility checks |
| Posted & pending transactions | Account activity views | Per-transaction, with merchant + category | Cash-flow underwriting, expense management, anti-fraud signals |
| Statements (PDF / OFX) | Statements module | Monthly archival | KYC/KYB, audit, mortgage and loan applications |
| Scheduled bill payments & payees | Bill pay manager | Per-payment, future-dated | AR/AP automation, accounting sync, reminders |
| P2P & account-to-account transfers | Pay people / Transfer money | Per-event with status | Rent collection, payroll, family-finance products |
| Recurring transfer schedules | Transfer scheduler | Schedule + next-run timestamp | Subscription billing, savings automation |
| Budget categories & spending | Budget progress view | Per-category monthly | PFM apps, financial-wellness coaching |
| Savings-goal progress | Savings goals tracker | Goal + progress percentage | Goal-based investing, gamified savings |
| Card status events | Card lock/unlock controls | Per-card, real-time | Fraud orchestration, lost-card workflows |
| Branch & ATM locator | Find a branch | Geo + hours | Maps, in-store SDKs, member service tools |
Context: A Colorado-based bookkeeping SaaS wants to import Meritrust Colorado checking and credit-card activity for member businesses without asking for credentials each month.
Data & APIs: account directory + transaction history + monthly statement export.
OpenBanking mapping: Member grants consent under a Rule 1033-style flow; FDX accounts and transactions resources are pulled nightly via a member-scoped access token that the bookkeeper refreshes silently.
Context: An indirect auto-lending fintech wants 12–24 months of deposit and withdrawal history to assess capacity for a vehicle refinance offer.
Data & APIs: long-window transaction pulls, recurring-payment detection, salary deposit recognition.
OpenBanking mapping: One-time consent retrieves the historical window; webhook events trigger re-pulls at decision checkpoints, eliminating PDF statement uploads.
Context: A consumer PFM app wants to surface the member's existing budget categories and savings-goal progress alongside outside accounts.
Data & APIs: budget summary, savings-goal endpoint, alert subscriptions.
OpenBanking mapping: Read-only scope plus push-style webhook subscriptions; the PFM never stores raw credentials, only the consent token.
Context: A property-tech platform wants to schedule recurring rent transfers from member tenants and confirm settlement on landlord books.
Data & APIs: recurring-transfer scheduling, transfer-status webhook, P2P pay-people flow.
OpenBanking mapping: Write-scope consent for scheduled transfers, narrowly limited to a named beneficiary; revocation honored via the standard consent endpoint.
Context: A fraud-prevention vendor wants to instantly disable a Meritrust Colorado debit card the moment its rules engine detects a high-risk auth.
Data & APIs: card lock endpoint, alert webhook for posted transactions, push notification path.
OpenBanking mapping: A scoped write token allows lock/unlock only; alert webhooks feed the vendor's risk pipeline in near real time.
Below are representative request shapes drawn from our reference build. Field names align with FDX v6.4 where possible so the same client can address other US credit-union data providers with minimal divergence.
POST /api/v1/meritrust-co/auth/login
Content-Type: application/json
{
"member_id": "PMCU-8821xxxx",
"credential": "<password-or-mfa-blob>",
"device": {
"platform": "ios",
"biometric": "face_id",
"device_fingerprint": "0a3f...c2"
},
"consent": {
"scope": ["accounts:read","transactions:read","transfers:write"],
"purpose": "accounting_sync",
"ttl_days": 90
}
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_3f82...",
"consent_id": "csnt_2025_04_25_abcd",
"expires_in": 1800
}
GET /api/v1/meritrust-co/accounts/{account_id}/transactions
?from=2026-01-01&to=2026-04-25&page=1&page_size=100
Authorization: Bearer <ACCESS_TOKEN>
X-Consent-Id: csnt_2025_04_25_abcd
200 OK
{
"account_id": "acc_chk_4421",
"page": 1,
"total": 318,
"transactions": [
{
"id": "txn_9f12",
"posted_at": "2026-04-22T14:08:00Z",
"amount": -42.18,
"currency": "USD",
"description": "KING SOOPERS #0125 BOULDER CO",
"category": "groceries",
"status": "posted"
}
]
}
POST https://your-app.example.com/webhooks/meritrust
X-Signature: sha256=...
Content-Type: application/json
{
"event": "transfer.completed",
"transfer_id": "tr_7821",
"account_id": "acc_chk_4421",
"amount": 1850.00,
"counterparty": "LANDLORD-LLC",
"settled_at": "2026-04-25T12:00:11Z",
"consent_id": "csnt_2025_04_25_abcd"
}
# Recommended: verify HMAC, idempotency-key on transfer_id,
# retry policy: exponential backoff up to 24h, then DLQ.
Every Meritrust Colorado integration we deliver is scoped against current US financial-data regulation. The CFPB's Personal Financial Data Rights Rule (12 CFR Part 1033), finalized October 22, 2024 and effective January 17, 2025, requires covered data providers to make consumer transaction and account data available in a standardized electronic form to authorized third parties — with explicit consent, revocation, and audit logging. Although tiered compliance dates were stayed by court order in late 2025, we already build to the rule's data-minimization, scope-binding, and consent-revocation expectations.
We further align payload shapes to FDX API v6.4 (Spring 2025), which incorporates 24 new RFCs, a refreshed Consent API behavioral specification, and the CSDF security model. Where applicable we honor the GLBA Safeguards Rule, NCUA member-data guidance, and state-level privacy statutes (e.g. the Colorado Privacy Act). NDAs, retention windows, and per-purpose access scoping are documented per engagement.
A typical pipeline we ship looks like this:
Meritrust Colorado serves predominantly retail (B2C) members across the Front Range — Boulder, Denver, Lafayette, Longmont, Lone Tree — alongside the Wichita-anchored Kansas footprint inherited from the legacy Meritrust charter. The membership skews toward employer-group, education, and community-tied households, with growing small-business penetration following the merger. Both iOS and Android are first-class platforms for the app, with biometric login and mobile RDC adoption running high among members under 45. For integration partners this means three things: predictable Symitar-Episys-style backends, mature digital channels with FDX-aligned hooks emerging via Jack Henry SymXchange, and a member base whose appetite for permissioned data sharing is rising in step with the broader US OpenBanking shift.
Click any thumbnail to view the full-resolution image.
Members of Meritrust Colorado often hold accounts at neighboring credit unions, and integration buyers usually need a unified view across them. The apps below frequently appear in the same Colorado / US credit-union OpenBanking conversations — we list them purely as ecosystem context, not as ranked alternatives.
The mobile app of the second-largest Colorado credit union (Greenwood Village HQ). Members commonly need cross-institution transaction exports between Bellco and Meritrust Colorado for household budgeting and small-business books.
Lone Tree-based community CU with broad Front Range membership. Aggregators that ingest Canvas transaction data typically reuse the same FDX-aligned client to pull from Meritrust Colorado as well.
Colorado's largest credit union by membership, headquartered in Colorado Springs. Card-control and bill-pay flows in Ent's app overlap heavily with Meritrust Colorado's, so a unified card-lock orchestration is a common ask.
Boulder-based CU with strong digital adoption among the same university and tech-employer segments Meritrust Colorado serves. Statement-export pipelines often run side-by-side for both apps.
Denver community CU. Westerra's transfer and recurring-payment data shapes are close enough to Meritrust Colorado's that a single normalization layer can serve both downstream products.
The Kansas-side Meritrust banking app from the same combined credit union. Cross-charter members benefit from a unified household-level transaction view that bridges the two apps.
The legacy app brand for the same Colorado member base prior to the 2025 merger; useful historical reference for migration testing and dual-version rollout windows.
A separate Pennsylvania-based credit union app sometimes confused with Colorado's Bellco. Naming-disambiguation aside, integration patterns mirror typical Symitar-backed CU stacks.
California CU running on Symitar Episys. Frequently referenced when our clients want a cross-state, multi-charter integration template that includes Meritrust Colorado.
National-charter credit union with FDX-style data-sharing initiatives. Useful comparison point for how member-permissioned APIs are evolving across the broader credit-union sector.
Source code delivery from $300: we hand over runnable API source, OpenAPI spec, and full documentation; payment after delivery upon acceptance.
Pay-per-call API: use our hosted endpoints with per-call billing — no upfront fee, ideal for teams that want usage-based pricing without standing up infrastructure.
We are an independent technical studio focused on App interface integration and authorized API integration for fintech clients worldwide. Our team brings hands-on experience from US and global banks, payments processors, credit-union service organizations, and protocol-analysis firms. We routinely ship production integrations across financial & banking apps (transaction records, statement export, card controls), e-commerce and retail apps (orders, payment sync), travel and mobility apps (booking, itinerary, payment verification), and social / OTT / dating apps (auth, messaging, profile management).
Customers tell us the same target-app name and requirement; we deliver runnable source code or a hosted API endpoint, fully documented, under either the from-$300 source-code model or pay-per-call billing. Every engagement includes compliance scoping against the relevant local regime (CFPB Rule 1033, GLBA, FDX in the US; PSD2/PSD3, GDPR in the EU; UPI/RBI in India; equivalent frameworks elsewhere).
To request a quote or submit your target app and requirements, open our contact page below.
The target app name (Meritrust Colorado), a written description of the data flows you want (e.g. transaction history sync, card lock, recurring transfers), and any sandbox or test credentials you can lawfully share. We handle the protocol analysis from there.
Most engagements ship a working API plus documentation within 8–15 business days. Multi-scope writes (transfers, card actions) or third-party approval cycles can extend that.
We work strictly under member authorization or documented public/authorized APIs. Consent records, scoping, and revocation are persisted in line with CFPB Rule 1033 expectations and FDX v6.4 patterns. We sign NDAs on request.
Yes — we monitor the published Meritrust Colorado app over an agreed support window and ship update patches when login flows, payload shapes, or alert webhooks shift after the August 2025 merger consolidation.
Publisher: Premier Members Credit Union, now operating as a division of Meritrust Credit Union following Legal Day One on August 1, 2025.
Package ID: com.premiermemberscu.premiermemberscu
Tagline: "Like your favorite neighborhood branch in an app." Marketed under "The Artisans of Banking" identity.
The Meritrust Colorado app gives members a single mobile surface for managing their relationship with the credit union. It supports a quick-snapshot dashboard across all enrolled accounts, secure sign-in with Touch ID and Face ID, full activity and balance review, debit and credit card lock/unlock, customizable transaction alerts, and remote check deposit. Members can pay other people, schedule loan payments, manage bill-pay payees and future-dated payments, and create or edit recurring money transfers without visiting a branch.
The app also embeds personal-finance tooling: budget progress summaries, spending and income breakdowns, and savings-goal tracking. Alert subscriptions cover transactions and purchases, upcoming or past-due payments, transfers, budget categories, and savings-goal milestones. Member service is built in — users can send a secure message, find their nearest branch or ATM, or initiate a phone call directly from the app.
Following the 2024–2025 merger between Premier Members CU (Boulder, CO) and Meritrust CU (Wichita, KS), the combined organization holds nearly $4 billion in assets, operates 33 branches, and serves more than 200,000 members across Colorado and Kansas. The consumer app retains the Meritrust Colorado branding for the legacy Premier Members member base while the broader Meritrust Mobile app continues to serve Kansas members. The board voted to maintain a Colorado state charter for the merged entity, citing flexibility for membership expansion.
This page describes technical integration positioning around the publicly observable functionality of the Meritrust Colorado app. It is not affiliated with, endorsed by, or sponsored by Meritrust Credit Union or Premier Members Credit Union.