定制 blessedjasonmwanza/moneyunify 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

blessedjasonmwanza/moneyunify

Composer 安装命令:

composer require blessedjasonmwanza/moneyunify

包简介

Payments API with primary focus on Mobile Money USSD payments.

README 文档

README

The MoneyUnify is a developer-friendly API Library plugin to accept payments, instant transfers, split payments, send payouts, and manage your startup business easily. MoneyUnify allows you to easily Validate your ideas with confidence and supports mobile money payments for all network operators 🚀

image

Setup

  • Create an account on MoneyUnify

  • Login and create your startup business from the businesses section.

  • Grab your Auth key and follow the documentation to begin collecting repayments using any programming language of your choice.

  • No need for bulk KYC. 🚫📝

  • Customer support is available via - 📞 WhatsApp 🤙🏾

  • install Settlements and withdraws through the API Dashboard to all mobile networks 🌍

  • Collect Money from All 3 networks; MTN, Airtel, and Zamtel instantly. 🚀

💸 Example: Request a Payment

fetch("https://api.moneyunify.one/payments/request", {
  method: "POST",
  headers: {
    "Content-Type": "application/x-www-form-urlencoded",
    "Accept": "application/json"
  },
  body: new URLSearchParams({
    from_payer: "09xxxxxxxx",
    amount: "1",
    auth_id: "pub_69b9y3n0h0ydbq"
  })
})
  .then(res => res.json())
  .then(data => console.log(data))
  .catch(err => console.error(err));

Example Response

{
    "message": "Transaction Initiated Successfully",
    "data": {
        "status": "initiated",
        "amount": 1,
        "transaction_id": "sPX215101815432505",
        "charges": 0.035,
        "from_payer": "260971xxxxxxx"
    },
    "isError": false
}

🔍 Example: Verify a Payment

fetch("https://api.moneyunify.one/payments/verify", {
  method: "POST",
  headers: {
    "Content-Type": "application/x-www-form-urlencoded",
    "Accept": "application/json"
  },
  body: new URLSearchParams({
    transaction_id: "rp_vd89gdn10d1",
    auth_id: "pub_69b9y3n0h0ydbq"
  })
})
  .then(res => res.json())
  .then(data => console.log(data))
  .catch(err => console.error(err));

Example Response

{
    "message": "Transaction processed Successfully",
    "data": {
        "status": "successful",
        "amount": "1.00",
        "transaction_id": "LP101815411535505",
        "charges": "0.04",
        "from_payer": "26097xxxxxxx"
    },
    "isError": false
}

Other examples

Find more examples for different programming languages here

📘 Tip: Use your auth_id from your MoneyUnify Businesses Dashboard to authenticate all API calls.

Conclusion

The MoneyUnify library simplifies the process of integrating with the Money Unify API. By following the steps outlined in this documentation, you can easily set up and make payment requests, verify transactions, and settle funds. For further assistance, feel free to reach out or check the official documentation for more advanced features.

>> Built with a lot of ❤ by />

👤 Blessed Jason Mwanza - show support 💖🙌 Buy him a Coffee

🤝 Contributing

Feel free to contribute to this project by submitting a pull request. Your contributions help improve the library and enhance the experience for all users!

Feature requests are welcome! Check the issues page or request a feature by creating a new issue.

Show your Support

If you find this library helpful, consider supporting it by sharing it with others or donating. Your support is greatly appreciated!

blessedjasonmwanza/moneyunify 适用场景与选型建议

blessedjasonmwanza/moneyunify 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 17 次下载、GitHub Stars 达 48, 最近一次更新时间为 2024 年 10 月 21 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 blessedjasonmwanza/moneyunify 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 blessedjasonmwanza/moneyunify 我们能提供哪些服务?
定制开发 / 二次开发

基于 blessedjasonmwanza/moneyunify 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 17
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 48
  • 点击次数: 17
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 48
  • Watchers: 3
  • Forks: 15
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-10-21