
Closed
Posted
Paid on delivery
I have already integrated Paystack on my site and confirmed that both the callback URL and webhook endpoints are reachable. Payments go through and Paystack marks them as “successful,” yet the buyer’s balance never updates on my platform and no error is returned. I need a developer to: • Trace the full payment flow, from redirect to webhook, and pinpoint why my credit-wallet routine is being skipped. • Verify Paystack’s signature on every event and harden the logic so only genuine, successful events trigger a credit. • Review the secret keys, environment settings, and database update query to be sure nothing is being silently blocked. • Supply clear notes (or brief code comments) so I can follow what was changed. Acceptance criteria 1. A live test transaction reflects instantly in the buyer’s wallet. 2. Only a verified “success” event from Paystack can alter balances. 3. Any failure or mismatch is logged with a readable message so future debugging is straightforward. The codebase is small and focused; once you identify the missed link, the fix should be quick. I’ll provide repository access and sandbox keys as soon as we start.
Project ID: 40657379
76 proposals
Remote project
Active 3 days ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
76 freelancers are bidding on average $27 USD for this job

Hi there, I understand your Paystack integration is processing payments successfully but the callback isn't updating user balances on your platform. This is typically caused by issues in the callback handling logic or database transaction problems. My approach involves debugging the callback endpoint to trace where the process fails. I'll check if Paystack is sending proper verification requests, examine your callback handler for response validation issues, and verify database update transactions are completing correctly. The problem often lies in missing verification steps, incorrect event type handling, or silent failures in the balance update process. I'll also review your webhook configuration and ensure proper error logging is in place for future troubleshooting. Since you've confirmed both endpoints are reachable, we need to focus on the data flow between Paystack's response and your balance update mechanism. This requires careful examination of your current callback implementation, database queries, and security validation steps to identify exactly where the disconnect occurs. Best Regards, Khorshed Alam, RS Software
$40 USD in 2 days
9.5
9.5

Hi, I can quickly trace and fix your **Paystack payment-to-wallet credit flow**. I’ll review the callback/webhook handling, signature verification, environment/secret configuration, and database update logic to identify why successful payments are not crediting balances. I’ll also harden the webhook so only verified successful Paystack events can update wallets, add clear error logging, and test the complete flow with a sandbox/live transaction. **Timeline:** 1–2 days **Availability:** Immediate Best regards, **Muhammad Rizwan**
$20 USD in 1 day
8.2
8.2

Hello, I can see the hidden fault line here: Paystack is already approving the payment, but your wallet logic is being bypassed somewhere between the redirect, webhook, and database update. I’ve fixed similar payment-flow issues in PHP/MySQL systems by tracing the exact event path, verifying Paystack signatures, and tightening the success check so only genuine, confirmed events update balances. I’ll review the secret keys, environment variables, webhook handling, and the credit query to find the silent failure point, then add clear comments and logging so the flow is easy to maintain. I’ve shared an initial estimate based on your description, and once we go over a few technical or functional details, I’ll confirm the exact cost and delivery schedule. Where in your current flow is the wallet credit triggered after Paystack success—webhook handler, callback endpoint, or a queued job? I can start with the repository and sandbox keys, and should be able to isolate the missed link quickly once I inspect the event handling. Looking forward to your reply so we can finalize the exact plan. Best regards, Asad
$30 USD in 3 days
8.3
8.3

Hi, I hope you're doing well! I can start immediately and trace the full payment flow from redirect to webhook, verify Paystack signatures on every event, and harden the credit-wallet logic so balances update only on verified successes. I’ve worked with PHP/Node backends handling payment flows and signature verification, which directly matches this task. My approach: I would reproduce the issue with sandbox keys, instrument detailed logs, identify where the credit routine is skipped, implement a robust webhook handler that validates Paystack signatures, ensure only successful events trigger credit, review secret keys and environment settings, and audit the update query. I’ll add concise code comments to explain changes and provide a testing plan to verify instant wallet updates in a live test transaction. Best regards,
$25 USD in 2 days
6.9
6.9

Hello, We would be glad to support you with this project. Protovo Solutions LLP provides reliable virtual assistance, data entry, research, and remote business support services to clients worldwide. Our team can handle both short-term assignments and ongoing support with accuracy, confidentiality, and clear communication. Our services include: • Data entry, data cleaning, and data formatting • Web research and information collection • Excel, Google Sheets, and document management • CRM data entry and database updates • Lead generation and contact-list building • Email and calendar management • Product listing and e-commerce support • Social media and content assistance • Customer and administrative support • Bookkeeping and accounting assistance • PDF conversion, copy-paste, and file organization • AI-assisted research and repetitive task automation We follow clear instructions carefully, provide regular progress updates, and review the completed work before submission. Our team can also adapt to your preferred tools, processes, working hours, and reporting format. Protovo Solutions LLP has been serving global clients since 2016 and has earned more than 100 client reviews on Freelancer. Please connect with us through chat to discuss the work. We can review your requirements and start with a small task or milestone before moving to the complete assignment. Kind regards, Protovo Solutions LLP
$30 USD in 7 days
6.9
6.9

Hi, I'm interested in your project "Fix Paystack Funding Callback Bug". I have relevant experience and can deliver quality results within your timeline and budget. I'd love to discuss the details. Please feel free to reach out.
$90 USD in 7 days
6.2
6.2

As an experienced Full Stack Developer and AI Solutions Expert, I have honed my skills in various areas, including PHP and Web Development for over 8 years with over 200 successfully completed projects. I understand the importance of creating robust and secure code that consistently delivers results; this is exactly what your project needs. I have solid experience in Paystack API integration, having previously dealt with similar payment gateway issues. My familiarity with Laravel, React, PHP, WordPress, Shopify, and understanding of web security will be valuable in finding and fixing bugs like the one affecting your credit-wallet routine. With my commitment to delivering on time and within budget (98% track record), providing clear documentation of changes made for future reference, and offering long-term support once the project is completed - choosing me is not just hiring a developer but gaining a trusted partner for your platform's crucial aspect. Let's connect today and set things right on your platform swiftly!
$150 USD in 7 days
6.4
6.4

hello, You have already ruled out the obvious culprit, since you have confirmed the callback and webhook endpoints are reachable, which is genuinely helpful because it narrows the problem to what happens after the event arrives. When Paystack marks a payment successful, the endpoint is reachable, yet the wallet never updates with no error, the cause is almost always one of two things, the signature verification silently failing so the handler discards the event as unverified, or the event being accepted but the database update query never firing or failing quietly. So the real job is tracing which link in that post-arrival chain breaks, and your acceptance criteria point exactly the right way by demanding readable logging, since the reason it is invisible now is that nothing is logging the skip. So I would first add clear logging at each step, event received, signature checked, success confirmed, wallet updated, since that instantly reveals where the flow dies rather than guessing. My instinct is the signature check, since a mismatch there makes every genuine event get rejected as invalid, which produces exactly your symptom, no credit and no error. Once found, I would harden it so only a verified success event can alter a balance, as you require, with failures logged in plain language so any future issue is easy to trace, and test with a live transaction to confirm the wallet updates instantly. Is the codebase plain PHP or on a framework like Laravel, since that shapes where the handler and signature logic sit? And are you verifying the webhook signature using your Paystack secret key currently, or is the handler crediting on the redirect callback instead, since relying on the redirect rather than the webhook is a common cause of this exact bug? have a nice day.
$30 USD in 1 day
6.0
6.0

Hi, I understand you have a Paystack integration issue where the buyer's balance isn't updating despite successful payments. I can help trace the payment flow and identify the problem. Could you clarify if there are any specific logs or error messages you have encountered during this process?
$10 USD in 7 days
5.8
5.8

Balance updates failing without errors usually indicate uncaught exceptions in the credit routine after successful payment confirmation. Paystack sends both redirect callbacks and async webhooks, and relying on only one creates race conditions where the wallet update gets skipped during network delays. I would trace the exact execution path with request logging before hardening signature validation. Are you processing payments via redirect callback, webhook, or both? Does your current code log raw webhook payloads before signature verification?
$30 USD in 1 day
5.6
5.6

Paystack webhook signature verification failures are the most common cause of silent balance update skips, especially when environment variables differ between sandbox and production. The callback URL may be reachable but still reject events if the hash comparison uses the wrong secret key or ignores payload encoding. I would add structured logging to the webhook handler first to capture exactly where the flow breaks before modifying any credit logic. Is your webhook endpoint verifying signatures using the live or test secret key? Does your database update run inside a transaction that could roll back silently on error?
$30 USD in 1 day
5.4
5.4

As an seasoned web developer with a passion for creating streamlined, efficient systems and a strong inclination towards API integrations, solving bugs like the Paystack Funding Callback issue on your site is where I excel. My extensive experience in PHP and MySQL will prove to be invaluable in tracing the payment flow and identifying the missed link in your credit-wallet routine. After all, it's no secret that seamless payment processing is crucial for any business, and ensuring that your customers' balances update accurately is a top priority. One of my strongest suits is my ability to create clean and scalable code. This will not only enable me to resolve the current issue but also provide you with clear notes or intimate code comments so that you can easily follow what has been changed. I assure you that once I identify the root cause, be it related to Paystack's signature verification or an environmental setting, my penchant for detail-oriented problem-solving combined with my expertise in Laravel, JavaScript and more will ensure swift remediation.
$10 USD in 3 days
5.2
5.2

Hello there, As per your requirement, I can trace and fix the complete Paystack payment flow and identify exactly why successful payments are not reaching your wallet credit routine. I will check the callback and webhook flow, Paystack signature verification, transaction status, environment and secret key configuration, webhook payload handling, and database wallet update query, while ensuring only verified successful transactions can credit the buyer. I will also add clear error logging and concise code comments so every failure or mismatch can be easily identified in the future. Since the payment is already completing successfully on Paystack, I can focus directly on finding the missing link, applying the fix, and validating it with a live test transaction against your acceptance criteria. Thanks, Raghu.
$15 USD in 7 days
4.9
4.9

Hi, I have successfully completed 100+ projects similar to "Fix Paystack Funding Callback Bug" and can deliver high-quality results for you quickly. With 10 years of experience in PHP, Web Security, Software Architecture, I ensure clean code, timely delivery, and clear communication throughout the process. I can complete this within 7 days for $11 USD. I am ready to start immediately. Please feel free to message me so we can discuss the details. Best regards, Praveen Kumar
$11.10 USD in 7 days
4.7
4.7

I have already integrated Paystack on my site and confirmed that both the callback URL and webhook endpoints are reachable. Payments go through and Paystack marks them as “successful,” yet the buyer’s balance never updates on my platform and no error is returned. I need a developer to: • Trace the full payment flow, from redirect to webhook, and pinpoint why my credit-wallet routine is being skipped. • Verify Paystack’s signature on every event and harden the logic so only genuine, successful events trigger a credit. • Review the secret keys, environment settings, and database update query to be sure nothing is being silently blocked. • Supply clear notes (or brief code comments) so I can follow what was changed. Acceptance criteria 1. A live test transaction reflects instantly in the buyer’s wallet. 2. Only a verified “success” event from Paystack can alter balances. 3. Any failure or mismatch is logged with a readable message so future debugging is straightforward. The codebase is small and focused; once you identify the missed link, the fix should be quick. I’ll provide repository access and sandbox keys as soon as we start.
$20 USD in 7 days
4.7
4.7

Hi, I’ve handled similar payment/webhook debugging where the difficult part is tracing the gap between a confirmed gateway transaction and the platform’s internal balance update. I’d trace the complete Paystack flow—callback, webhook, signature validation, event handling, and database transaction—to identify exactly where the credit routine is being skipped. I’ll harden the success checks, verify environment/secret configuration, fix the wallet update, and add useful logging for failures or mismatches. I’ll then run a sandbox/live test to confirm genuine successful payments update the wallet reliably. Best Regards, Muhammad Saad K
$20 USD in 7 days
5.0
5.0

Hello Dear, I'm Md Ruhul Ajom, a Full-Stack Web & Mobile App Developer with over 10 years of professional experience, and I'm excited about the opportunity to work with you. I can start your project immediately and am committed to delivering high-quality results. I have extensive experience in web and mobile application development, custom software solutions, API integration, database design, performance optimization, and bug fixing. My expertise includes React, Vue.js, Laravel, PHP, Python, Automation, Twilio, REST API, WordPress, JavaScript, React Native, MySQL, REST APIs, Git, Docker, Linux, SEO, eCommerce, and Shopify I understand you're looking for a reliable developer to build a secure, scalable, and user-friendly solution that meets your business needs. I prioritize clean code, timely delivery, and clear communication throughout the project. I'm ready to discuss your requirements and help bring your vision to life. Best regards, Md Ruhul Ajom
$45 USD in 2 days
5.4
5.4

Hi, I understand you're facing an issue with the Paystack integration where the buyer's balance isn't updating despite successful payments. I can help trace the payment flow and identify the root cause of the skipped credit-wallet routine. What framework is your site built on?
$12 USD in 7 days
4.7
4.7

Hi, Thanks for posting "Fix Paystack Funding Callback Bug" — it lands right in our wheelhouse, and we'd be thrilled to bring it to life. I don’t just want to tick the boxes here; my aim is to hand you something that genuinely goes beyond what you pictured. From your brief I can see this involves php — all areas we handle in-house. We specialise in PHP, Web Security, Software Architecture, MySQL, which lines up directly with what you need. How we'd approach it: - Map out the scope, pages and data models up front - Build the frontend and backend with clean, scalable code - Test across devices and browsers, then deploy - Hand over with documentation and post-launch support I also noted you don’t need error — that’s clear, and I’ll keep the work clean and strictly on-brief. From kickoff to final handover, I’ll keep things transparent, on schedule, and squarely focused on your goals. Happy to jump on a quick chat to walk through scope and timelines whenever suits you. Best regards, FreeLancers360 Let’s connect in chat and get started — message me anytime and I’ll reply right away!
$10 USD in 5 days
4.5
4.5

Hello, I checked your project "Fix Paystack Funding Callback Bug" and already have a clear understanding of your requirements and how to deliver them efficiently. I have solid experience in PHP, MySQL, Web Development, and I've successfully completed similar projects by delivering high-quality, scalable, and reliable solutions. Why choose me? * Strong expertise in PHP, MySQL, Web Development * Clean, optimized, and scalable implementation * Fast communication and regular progress updates * Focused on delivering results, not just completing the task I'm ready to start immediately and would be happy to discuss the details. Best regards, Umer
$25 USD in 1 day
4.2
4.2

Abuja, Nigeria
Payment method verified
Member since Aug 18, 2026
$10-30 USD
$10-30 USD
$10-30 USD
₹1500-12500 INR
₹600-1500 INR
₹750-1250 INR / hour
$15-25 USD / hour
£750-1500 GBP
₹600-1500 INR
$250-750 USD
₹12500-37500 INR
₹12500-37500 INR
₹1500-12500 INR
$250-750 USD
₹600-1500 INR
₹12500-37500 INR
₹1500-12500 INR
$10-30 USD
$20-30 SGD / hour
$250-750 USD
$250-750 USD
$10-30 USD
₹12500-37500 INR