Hello, while working with C# .NET Framework (Blazor Server Side Application) I'm using the library PayPalCheckoutSdk for doing Paypal Payment. When calling the OrderCaptureRequest I'm sometimes getting these errors that I can't explain to me. 1. RESOURCE_NOT_FOUND 2. UNPROCESSABLE_ENTITY What should I debug or collect as information to get rid of that issues? Thx! Attached you find my log entries with the stack trace: 2020-04-22 08:50:32.4225 Error PayPalHttp.HttpException: {"name":"RESOURCE_NOT_FOUND","details":[{"field":"order_id","value":"5JT00281884123214","location":"path","issue":"INVALID_RESOURCE_ID","description":"Specified resource ID does not exist. Please check the resource ID and try again."}],"message":"The specified resource does not exist.","debug_id":"2a0bf147df60c","links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-INVALID_RESOURCE_ID","rel":"information_link","method":"GET"}]} at PayPalHttp.HttpClient.Execute[T](T req) at PegasusV6.PaypalHandler.SetPayPalOrderPaid(Int64 storeId, String paypalToken) in C:\SOURCE\PegasusV6\PegasusV6.API\Classes\PaypalHandler.cs:line 74 {"name":"RESOURCE_NOT_FOUND","details":[{"field":"order_id","value":"5JT00281884123214","location":"path","issue":"INVALID_RESOURCE_ID","description":"Specified resource ID does not exist. Please check the resource ID and try again."}],"message":"The specified resource does not exist.","debug_id":"2a0bf147df60c","links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-INVALID_RESOURCE_ID","rel":"information_link","method":"GET"}]} 2020-04-22 09:56:09.8611 Error PayPalHttp.HttpException: {"name":"RESOURCE_NOT_FOUND","details":[{"field":"order_id","value":"5JT00281884123214","location":"path","issue":"INVALID_RESOURCE_ID","description":"Specified resource ID does not exist. Please check the resource ID and try again."}],"message":"The specified resource does not exist.","debug_id":"37a59d36aaeda","links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-INVALID_RESOURCE_ID","rel":"information_link","method":"GET"}]} at PayPalHttp.HttpClient.Execute[T](T req) at PegasusV6.PaypalHandler.SetPayPalOrderPaid(Int64 storeId, String paypalToken) in C:\SOURCE\PegasusV6\PegasusV6.API\Classes\PaypalHandler.cs:line 74 {"name":"RESOURCE_NOT_FOUND","details":[{"field":"order_id","value":"5JT00281884123214","location":"path","issue":"INVALID_RESOURCE_ID","description":"Specified resource ID does not exist. Please check the resource ID and try again."}],"message":"The specified resource does not exist.","debug_id":"37a59d36aaeda","links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-INVALID_RESOURCE_ID","rel":"information_link","method":"GET"}]} 2020-04-22 12:59:17.5061 Error PayPalHttp.HttpException: {"name":"UNPROCESSABLE_ENTITY","details":[{"issue":"ORDER_ALREADY_CAPTURED","description":"Order already captured.If 'intent=CAPTURE' only one capture per order is allowed."}],"message":"The requested action could not be performed, semantically incorrect, or failed business validation.","debug_id":"c6a5b5540cef4","links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-ORDER_ALREADY_CAPTURED","rel":"information_link","method":"GET"}]} at PayPalHttp.HttpClient.Execute[T](T req) at PegasusV6.PaypalHandler.SetPayPalOrderPaid(Int64 storeId, String paypalToken) in C:\SOURCE\PegasusV6\PegasusV6.API\Classes\PaypalHandler.cs:line 74 {"name":"UNPROCESSABLE_ENTITY","details":[{"issue":"ORDER_ALREADY_CAPTURED","description":"Order already captured.If 'intent=CAPTURE' only one capture per order is allowed."}],"message":"The requested action could not be performed, semantically incorrect, or failed business validation.","debug_id":"c6a5b5540cef4","links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-ORDER_ALREADY_CAPTURED","rel":"information_link","method":"GET"}]} 2020-04-22 17:57:50.5590 Error PayPalHttp.HttpException: {"name":"UNPROCESSABLE_ENTITY","details":[{"issue":"ORDER_ALREADY_CAPTURED","description":"Order already captured.If 'intent=CAPTURE' only one capture per order is allowed."}],"message":"The requested action could not be performed, semantically incorrect, or failed business validation.","debug_id":[Removed. Phone #s not permitted],"links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-ORDER_ALREADY_CAPTURED","rel":"information_link","method":"GET"}]} at PayPalHttp.HttpClient.Execute[T](T req) at PegasusV6.PaypalHandler.SetPayPalOrderPaid(Int64 storeId, String paypalToken) in C:\SOURCE\PegasusV6\PegasusV6.API\Classes\PaypalHandler.cs:line 74 {"name":"UNPROCESSABLE_ENTITY","details":[{"issue":"ORDER_ALREADY_CAPTURED","description":"Order already captured.If 'intent=CAPTURE' only one capture per order is allowed."}],"message":"The requested action could not be performed, semantically incorrect, or failed business validation.","debug_id":[Removed. Phone #s not permitted],"links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-ORDER_ALREADY_CAPTURED","rel":"information_link","method":"GET"}]}
... View more