-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
Calling checkout with the following data succesfully creates a new payment:
$data = [
'Amount' => (int)$plan->price,
'Currency' => 'EUR',
'Paymentmethod' => strtoupper($method),
'Issuer' => $provider,
'Country' => 'NL',
'Language' => 'NL',
'Description' => 'Recurring subscription',
'OrderID' => (string)$subscription->id,
'Reference' => (string)$subscription->id,
'CustomerID' => (string)$this->user->ID,
];
Using the same data to initiate a vault checkout raises the following error:
object(stdClass)#25 (1) { ["Message"]=> string(99) "Validation failed for one or more entities. See 'EntityValidationErrors' property for more details." }
I have no idea where I would find the EntityValidationErrors property to debug this further...
Metadata
Metadata
Assignees
Labels
No labels