Discussions

Ask a Question

Checkout Api

Hi! Good Day! Is there a way for us developers to remove or hide the redirect back to the merchant button after payment success?

Recurring payments update

Do you have updates with recurring payments? I mean, do you now support it?

Why is my Webhook to Endpoint not Receiving an Event?

Webhook already created and its not Receiving Event direct on my api endpoint. My url is accessible and when I test using Postman, it works. \--url from webhook <https://myWebsite/WebApiEndpoint>

No webhook received using live mode or endpoint not triggered

Good day, we're creating a website that uses Paymongo pages. When we test using Postman, it works, but when we try to pay in live mode using Paymongo pages, we don't receive the webhook or trigger our endpoint. Are there any steps to determine the problem?; how to know if paymongo has already sent the webhook? \--WEBHOOK { "id": "hook_bAjbS7B******\*******", "type": "webhook", "attributes": { "livemode": true, "secret_key": "whsk_PCG9vd******\*\*******", "status": "enabled", "url": "[our url is accessible in public ](https://lms.virtualproph.com/PinoyWishWebApi/api/User/paymongo-data"), "events": [ "source.chargeable" ], "created_at": 1681739205, "updated_at": 1681739205 } } \--ENDPOINT ```csharp [AllowAnonymous] [HttpPost, Route("paymongo-data")] public async Task<IActionResult> Paymongo(string json) { var rawData = await _userSvc.RawData(json); PaymongoData data = JsonConvert.DeserializeObject<PaymongoData>(json); var response = await _userSvc.PaymongoProcess1(data); if (response.Success) { return Ok(response); } else { return BadRequest(); } } ``` Thanks,

Union Bank authorization unsuccessful

Hi. I've been trying to integrate UB as one of our payment channels in our app, but after logging in and clicking "Authorize" and "Pay", it returns "Access token is invalid or expired". Our payments for UB is also activated at the moment. Thank you!

Blocked a frame with origin "http://localhost:3000" from accessing a cross-origin frame.

I have created the modal that shows the paymongo interface/iframe for payment but it's not possible to interact with it because of CORS message. Blocked a frame with origin "http://localhost:3000" from accessing a cross-origin frame.

API for Pages

There is a function in the dashboard where you can create a page and customers can use that to pay. How can I create a page dynamically using api?

Gonna ask if it is a viable request for educational/thesis purpose only

May I ask if we are able to use this payment gateway Api platform to develop a website with similar transactions made like Kickstarter, although ours focuses mainly on IT projects and similar prospects (Gaming, IoT, and etc.)

Payout API

Hi guys, Just wanted to ask if paymongo supported payout API? My use case scenario is sending money from my paymongo account to the user's choice of e-wallet/bank (cash or debit card). Not sure if this is possible in the current API of paymongo. Thanks.

PaymentMethod foreign card status to be predictable before payment or attaching it to a PaymentIntent

It's useful to know if a card is foreign to predict the amount we show to our users before attaching a "card" Payment Method to a Payment Intent. Issues: - It was due to the amount we input for the Payment Intent is the actual gross amount. So we have to put the correct amount. - It was due to a payment is automatically processed when a Payment Method is attached to a Payment Intent. On our end, it is somehow a bad/inappropriate workaround to show to users that the card payment fee will be "4.5% + P15" all the time instead of showing between it and "3.5% + P15" just to protect us from the unknown card status if it is a foreign card. By the way, the reason we show the percentage is to be transparent with the monetary breakdown to our users. Another improvement to this might be: - Not auto process payment right away when attaching payment method if it show the card as foreign in a PaymentIntent. - Let us have the option set the "net" amount instead of "gross" amount in the Payment Intent API.