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
Currently a typescript warning Property 'response' does not exist on type 'ModifyDonations'. is present in EditModal.
The issue has not been handled because of no knowledge of the structure of response received when an api request is sent to /app/subscriptions/${record?.id}?scope=modify such that the status received is action_required.
It seems like status=action_required should be received in the cases related to the 2-Factor-Authentication that some cards have or if the card provide has expired in the meantime.
The text was updated successfully, but these errors were encountered:
@mohitb35 : I tried simulating this scenario by using the test stripe card (https://stripe.com/docs/testing#authentication-and-setup) which always needs authentication. After this I modified the amount by a small number and the request was successful. I tried modifying the year/amount by a large number and the request failed with the following 500 error:
"Payment for this subscription requires additional user action before it can be completed successfully. Payment can be completed using the PaymentIntent associated with subscription.latest_invoice. Additional information is available here: https:\/\/stripe.com\/docs\/billing\/subscriptions\/overview#requires-action\nfile: \/app\/vendor\/stripe\/stripe-php\/lib\/Exception\/ApiErrorException.php, line: 38"
@mohitb35 : I tried simulating this scenario by using the test stripe card (https://stripe.com/docs/testing#authentication-and-setup) which always needs authentication. After this I modified the amount by a small number and the request was successful. I tried modifying the year/amount by a large number and the request failed with the following 500 error:
"Payment for this subscription requires additional user action before it can be completed successfully. Payment can be completed using the PaymentIntent associated with subscription.latest_invoice. Additional information is available here: https:\/\/stripe.com\/docs\/billing\/subscriptions\/overview#requires-action\nfile: \/app\/vendor\/stripe\/stripe-php\/lib\/Exception\/ApiErrorException.php, line: 38"
I tried to replicate the same situation and when I edit the amount, the response received still have status active, also even though request status being obtained is 200 there is an error popup with the message : Something went wrong. Please check your internet connection or try again later.
Currently a typescript warning
Property 'response' does not exist on type 'ModifyDonations'.
is present inEditModal
.The issue has not been handled because of no knowledge of the structure of response received when an api request is sent to
/app/subscriptions/${record?.id}?scope=modify
such that the status received isaction_required
.It seems like
status=action_required
should be received in the cases related to the 2-Factor-Authentication that some cards have or if the card provide has expired in the meantime.The text was updated successfully, but these errors were encountered: