移动银行协议分析 · 登录/授权 · 交易与对账 API · 合规源码交付
我们提供面向 Afirme Móvil 的应用层协议分析、移动登录与会话管理、SPEI/CoDi/QR 支付集成、对账单抓取与数据导出(Excel/CSV/JSON),并交付可运行源码与 OpenAPI 文档。
{
"openapi": "3.0.1",
"paths": {
"/api/v1/afirme/statements": {
"post": {
"summary": "拉取账户交易对账单",
"requestBody": {"content": {"application/json": {"schema": {"type":"object","properties":{
"account_id":{"type":"string"},"from_date":{"type":"string","format":"date"},"to_date":{"type":"string","format":"date"},"page":{"type":"integer"}
}}}}},
"responses": {"200": {"description": "交易列表与分页信息"}}
}
}
}
}
账户同步、实时交易通知(Webhooks)、批量对账导出、SPEI 出入账监听、CoDi/QR 收款与回调、无卡取现与分期数据接入。
# Step1: 登录换取会话令牌 (示例)
POST /auth/login
{
"username":"user@example.com",
"password":"********"
}
Response: {"access_token":"ey...","refresh_token":"rt...","expires_in":3600}
# Step2: 查询交易
GET /api/v1/afirme/accounts/{account_id}/transactions?from=2025-01-01&to=2025-01-31
Authorization: Bearer ey...
# Webhook: 交易状态回调
POST /webhooks/afirme/transaction
{"txn_id":"SPEI123","status":"COMPLETED","amount":1200.00}
我需要提供什么?
如何保证合规?
Afirme Móvil 将分行功能搬到手机上,支持开户、指纹/面部识别登录、账户与卡片管理、SPEI 转账、CoDi(二维码/NFC)收付款、账单支付、充值与对账单查询。主要功能包括:
(以上内容根据应用描述整理,供技术集成参考。)