Help : SCA and PHP Payment Form

Thanks so much - I’m getting somewhere - managing to pass the Verification token through to my process page, but here I’m stuck again.

How do I then pass that to CreatePaymentRequest

The only args I can see it taking are the nonce, a uniqueID, and the charge details.

I currently have (pre SCA):

$payments_api = $client->getPaymentsApi();

$money = new Money();
$money->setAmount($_POST['amount']);
$money->setCurrency('GBP');

$create_payment_request = new CreatePaymentRequest($nonce, uniqid(), $money);

Where do I place the v.token in there?

Ben