We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An example uri to get a payin refund could be https://api.sandbox.mangopay.com/v2.01/my_sandbox/payins/payin_m_012345/refunds
The '_' in the 'payin_m_012345' will not be matched by the '[0-9a-zA-Z]+' regex.
The regex needs to be updated to [0-9a-zA-Z_]+ to work correctly.
The text was updated successfully, but these errors were encountered:
Fix for Mangopay#217
180d4bf
No branches or pull requests
An example uri to get a payin refund could be https://api.sandbox.mangopay.com/v2.01/my_sandbox/payins/payin_m_012345/refunds
The '_' in the 'payin_m_012345' will not be matched by the '[0-9a-zA-Z]+' regex.
The regex needs to be updated to [0-9a-zA-Z_]+ to work correctly.
The text was updated successfully, but these errors were encountered: