I create and submit the following payment through the Express Express V4 API:
return paypal.rest.payment.create(env, client, {
intent: 'authorize',
payer: {
"payment_method": "paypal"
},
transactions: [
{
amount: { total: '0.01', currency: 'GBP' }
}
]
});
and I return the following object:

Everything seems to be on the right track. The problem is that there are no signs of this payment in the sandbox toolbar.
I even tried to use an active account and send a real penny, but there are no signs of a transaction in the account of the buyer or seller.
If this payment was not successfully created, why do I see a returned object with a status "created"?
FYI: if I send a payment using intent: 'sale', it is successfully processed and appears on the control panel.