Peter Ocansey

Results 2 issues of Peter Ocansey

I added a location (Accra) property to customer and want to list the customers base on this property ``` $filter = (new CustomerFilters()) ->withQuery('property:"Accra'); $customers = $client->customers()->list($filter); ``` This returns...

SetSettings is declared to receive an array of EmailSettings. Passing an array or object does not work ```javascript const params = new EmailParams() .setFrom(new Sender('no-reply@youremail', 'YourEmail')) .setTo([new Recipient(to)]) .setSubject(subject) .setHtml(html)...