drip-php
drip-php copied to clipboard
An object-oriented PHP wrapper for Drip's API
I've tried to refactor the Drip PHP client to more maintainable chunks and started implementing more of the REST API. However, I haven't done any integration testing. Sharing in case...
## Background The current SDK does not allow for v3 shopper activity endpoint calls necessary for updating shopping cart data, and ordering data. This update adds the ability to do...
Hi, could you add support for orders?: http://developer.drip.com/?shell#create-or-update-an-order
This update would allow the use of optional params shown in [List all Subscribers API](https://developer.drip.com/#list-all-subscribers).
I had some issues with content-type. now it is set to: ``` $req_params = [ 'timeout' => $this->timeout, 'connect_timeout' => $this->connect_timeout, 'headers' => [ 'User-Agent' => $this->user_agent(), 'Accept' => 'application/json,...