dotMailer-API-v2-PHP-client icon indicating copy to clipboard operation
dotMailer-API-v2-PHP-client copied to clipboard

PHP client library for the dotMailer v2 (REST) API with MULTIPLE ACCOUNTS SUPPORT!

Results 15 dotMailer-API-v2-PHP-client issues
Sort by recently updated
recently updated
newest added

You have a wrapper for the resubscribe, but there is a resubscribe with no challenge endpoint that is not implemented. http://api.dotmailer.com/v2/help/wadl#PostContactsResubscribeWithNoChallenge

I started seeing InvalidOffsetException: "suppressedcontacts" getting ApiContactImportReport Looks like this may have been added to the API interface recently? I fixed it by adding 'SuppressedContacts' => 'XsInt' To ApiContactImportReport.getProperties()

When outputting an object to JSON, if it contains an XsDateTime object, the resulting JSON wasn't valid as the date string wasn't being wrapped in double quotes. This commit fixes...

The list of reserved words has been updated in PHP 7 to include ‘null’, which is used as a class name for the null DataType. I got around it by...

This code adds support for the transactional email triggered campaign endpoint: https://developer.dotmailer.com/docs/send-transactional-email-using-a-triggered-campaign Essentially this is a simple PR that defines the data types required for this API call, and adds...

http://api.dotmailer.com/v2/help/wadl#Email is missing from implementation.

When trying to use the PostContacts method, if an option has not been added, for example, a custom data field called 'TYPE', then even though the contact gets successfully added...

Hi. There is some issue with Resources:GetCampaignsSendBySendId() Currently on this line: https://github.com/romanpitak/dotMailer-API-v2-PHP-client/blob/master/src/Resources/Resources.php#L360 There is no execution so request will not be send to Dotmailer as result we will have array....

Issue #22 - This is to resolve PHP7+ compatibility issues.

Hi, I'm having some difficulty understanding how exception handling would work. I'm having some trouble catching the below Exception for example. I'm thinking i'm perhaps in the wrong namespace and/or...