Authorize NET ARB generatedTransactions - authorize.net

I am integrating with Authorize.NET
I have implemented Charge Refund and Automated Recurring Payments
But because recurring payments execute on the Authorize server I need to sync them back. ARB API does not have a QueryTransactions function. Is there any way to implement this functionality in Authorize.NET

What you need to use is Silent Post. It's just like Paypal's IPN in which you are notified whenever a transaction is made and that includes subscription payments made through ARB.
(Disclaimer: I wrote that article)

Related

How to send Crypto payments (programmatically) gotten through coinbase commerce

i have successfully integrated coinbase commerce into my django app for receiving cryptocurrency payment from the users. However the site payment process involves receiving payment from a User A which is intended for User B into the site coinbase commerce wallet and then only after User B has completely handed over whatever was the value/asset been paid for, then the payment would go on to be forwarded finally to User B.
But the issue is that coinbase commerce has no facility for sending payments. and though payment can be sent with a python api on COINBASE, they are two seperate things and the money/coin in coinbase commerce would not be accessible from COINBASE even if it the same user/profile on the platform.
Please does anyone have a solution to this problem...even if it does not use coinbase commerce, the only requirement is that it uses a crypto payment gateway
I'm in the same stage with you, I think there is no such thing in commerce Coinbase but if you take a look at the Coinbase developer api you can see transfer money endpoint under the transactions title: https://developers.coinbase.com/api/v2#send-money But I couldn't understand why we need to have account_id, I just want to transfer money from my own account to users. You can also take a look at Coinbase Pro api, there may be something helpful for us.

Django payments guide

I am trying to make my own payment gateway django application.I went through many payment gateway websites like paypal, razorpay. But I'm facing issues like how the processing should be and how the workflow should be.
I just need to integrate this with my other website, so this is secondary preference.so i need help that how can I create payment gateway django application.Any resources for the same or any online prebuild Github/Gitlab etc repository available.
I have some experience in django but i need to do this project within 10 hours.
I need to implement very basic functionality of what payment gateways does. No need to api. Just locally I will connect my payment gateway app to my other website.
I just want to show how payment gateway work locally means creating my own very basic payment gateway app. Credit card details etc will be fake. No real money transaction.
Remember: fake payments and I just want to develop and show how payment gateway work. A basic local app. Without real payment thing but virtual and fake.

Integrating Whatsapp with Aws- for sending msgs about aws services

I'm looking for AWS integration with whatsapp.
when any user start the aws services , that should be notify on whatsapp
is there any youtube link, or reference available on the internet?
thanks in advance
Whatsapp apis are not public.
To get the approval you need to give your application to facebook team here
But as far Facebook team is not directly approving the requests they are suggesting,
In order to ensure a high quality experience for businesses and users, we're in a limited public preview.
To go to market on WhatsApp Business API during this time, please consider using a Business Solution Provider. Facebook has partnered with over 46 global providers who specialize in WhatsApp business to consumer messaging. Search the WA Business API provider directory now.
Good luck.. you can't rely on the consumer Whatsapp for an API (in fact they might ban your number if you try using one of the reverse engineered API on github).. but you can get the business API here .. if you can work out how to find the actual API spec.. you are probably better off to use something with a well established api connector to AWS though

How do I incorporate SCA data into the Paypal DoDirectPayment API call for PDS2

Paypal are hounding me to change my current payment gateway that uses their API, and hand it over to a third party (that presumably will charge for the service) because of the PDS2 (Payment Service Directive - revised) which demands Strong Customer Authentication (SCA) unless a transaction is exempt. The extra info can be a password, fingerprint or phone, but details on how to use their API for this are missing.
Paypal's documentation is close to useless, but Stripe's documentation have information as to what constitutes an exempt transaction, and in fact that the PDS2 only applies if the business AND the customer's bank is in the European Economic Area (ref: https://stripe.com/en-nl/guides/strong-customer-authentication) and that the bank deems the transaction as risky.
The definition of a risky transaction is subjective and decided by the banks, so the implication is that we MUST enable SCA. I use django-paypal which provides helper functions and data structures for using paypal's API.
Paypal are not too good at supporting developers, and communication with their technical staff is impossible. So I emailed the developer of django-paypal, but I have not received a response (https://github.com/appsumo/django-paypal-1).
The deadline for this is September 2019, after which paypal warn of declined transactions and general pestilence if there is non-compliance with PDS2. The odd thing is, SCA was also introduced as a version 1 (PDS) back in 2015, and there were warnings of declined transactions then too.
For credit card, I currently use django-paypal doDirectPayment which uses paypal's DoDirectPayment which uses SOAP. I don't see anything in the doc about supplying credentials for SCA with these methods. I assume that I don't need to do anything extra for redirected paypal payments, as paypal control this payment process.
UPDATE
Paypal have consigned Cardinal Commerce to provide some kind of API, BUT this is client side only using Songbird.js. They indicate there is a serverside solution though...
Because Songbird is a client side JavaScript library it can only
interact with payment brands client side. Any interactions that
require server side implementations, such as our Cardinal Cruise
Hybrid integration, are out of scope for Songbird.js and the merchant
may need to integrate directly to the Cardinal Centinel platform
directly.

Authorize.net ARB API, E-mail Questions

Just had a few simple questions on the Authorize.net Automated Recurring Billing
Does the API allow you to manage subscriptions remotely?
An example would be updating subscriptions and searching through them through the API and editing any info you see fit?
Can you modify the automated emails to look personalized?
Can you pro-rate, or do you need to set it up through AIM (Advanced Integration Method) for the initial transaction and with the AVS (Address Verification Service) for validity?
Thanks much.
Does the API allow you to manage subscriptions remotely? An example would be updating subscriptions and searching through them through the API and editing any info you see fit?
You can update subscriptions after they are created. The ARBUpdateSubscriptRequest API call allows for this. You should refer to the API guide to see what you can and cannot do with it.
Can you modify the automated emails to look personalized?
No. If you want to have personalize emails you will need to send your own.
Can you pro-rate, or do you need to set it up through AIM (Advanced Integration Method) for the initial transaction and with the AVS (Address Verification Service) for validity?
You should always do the first payment through AIM to verify the payment goes through and the credit is valid anyway so if pro-rating a payment is necessary it's easily handled during this step.