I\'m working in the sandbox and using the PayPal REST .net SDK method Payment.Create with a CreditCard object. When all parameters are valid and using the test CC number from h
My problem was that my total, detail.subtotal, and items.price were passing in values like $1,000.00 and it needs decimal so use something like:
total
detail.subtotal
items.price
total = Regex.Replace(model.OrderTotal, "[^0-9.]", "")