Mangopay / mangopay2-net-sdk

.Net SDK for MANGOPAY
https://www.nuget.org/packages/mangopay2-sdk/
20 stars 23 forks source link

ApiIdempotent fails to LoadResourceObject for PayinsGetRefunds due to incorrect regex #217

Open tmitchel2 opened 8 months ago

tmitchel2 commented 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.