Hi, In the CHECKOUT.ORDER.APPROVED webhook event I get the capture ID because that's what's need to execute a refund. Only sometimes it's simply not present. I guess I can get the capture id from the client side, but that seems less secure. Any idea what's going on? Here it's not there: I notice the lack of an "update_time": "2020-06-03T18:43:48Z" entry, but there's no second event with the updated data. "resource": { "create_time": "2020-06-03T18:21:36Z", "purchase_units": [ { "reference_id": "default", "amount": { "currency_code": "USD", "value": "25.00" }, "payee": { "email_address": "", "merchant_id": "" }, "shipping": { "name": { "full_name": "test buyer" }, "address": { "address_line_1": "1 Main St", "admin_area_2": "San Jose", "admin_area_1": "CA", "postal_code": "95131", "country_code": "US" } } } ], Here it is: "resource": { "update_time": "2020-06-03T18:43:48Z", "create_time": "2020-06-03T18:43:36Z", "purchase_units": [ { "reference_id": "default", "amount": { "currency_code": "USD", "value": "25.00" }, "payee": { "email_address": "", "merchant_id": "" }, "shipping": { "name": { "full_name": "test buyer" }, "address": { "address_line_1": "1 Main St", "admin_area_2": "San Jose", "admin_area_1": "CA", "postal_code": "95131", "country_code": "US" } }, "payments": { "captures": [ { "id": "4V154753KL6884621", "status": "COMPLETED", "amount": { "currency_code": "USD", "value": "25.00" },
... View more