Open tmitchel2 opened 8 months ago
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.
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.