You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating an ARB Subscription in Authorize.net using the customer profile. This is my flow :
creating a customer and payment profile.
create the first-month payment through auth capture.
creating an ARB subscription using this customer profile.
Here 1 & 2 completes successfully but the 3rd step shows the error: E00040, The record cannot be found. This error occurs only when I am creating the subscription just after creating a new profile. If I use this same customer profile to create the ARB subscription after some time, it works fine. It will be very useful if anyone could help me out in this scenario. Thanks in Advance.
The text was updated successfully, but these errors were encountered:
The PRoblem is you HAVE to WAIT like 15 seconds to one minute from creating a customer payment profile and then creating a subscription with it. Take their card info, run your request to create customer payment profile, once that comes back take the response (if successsful) and make your post request to your backend to create the subscription but use a setTimeout(() => {}, 15000) or something.
Its a ridiculous error but you can have modal pop up that says, "creating your account" or something and if your card info comes back bad after waiting 15 seconds or 30 seconds, ("ive not issues with 15 seconds but docs say to wait one minute"), then just show customer something saying there was an error with their card
TCS-Dev saikumarkale- The error occurs due to sending back-to-back requests, it will take some time to replicate the data, to overcome this issue we should add some waiting time in between one request to other request.
I am creating an ARB Subscription in Authorize.net using the customer profile. This is my flow :
Here 1 & 2 completes successfully but the 3rd step shows the error: E00040, The record cannot be found. This error occurs only when I am creating the subscription just after creating a new profile. If I use this same customer profile to create the ARB subscription after some time, it works fine. It will be very useful if anyone could help me out in this scenario. Thanks in Advance.
The text was updated successfully, but these errors were encountered: