Skip to content

An object-oriented PHP wrapper for Drip's REST API v2.0

License

Notifications You must be signed in to change notification settings

mtasuandi/drip-php

 
 

Repository files navigation

Drip API Wrapper - PHP

An object-oriented PHP wrapper for Drip's REST API v2.0

Build Status

Installation

Run composer require dripemail/drip-php

Authentication

For private integrations, you may use your personal API Token (found here) via the api_key setting:

$client = new \Drip\Client("YOUR_API_KEY", "YOUR_ACCOUNT_ID");

For public integrations, pass in the user's OAuth token via the access_token setting:

$client = new \Drip\Client("YOUR_ACCESS_TOKEN", "YOUR_ACCOUNT_ID");

Your account ID can be found here. Most API actions require an account ID, with the exception of methods like the "list accounts" endpoint.

PHP version support

We attempt to support versions of PHP that are supported upstream: http://php.net/supported-versions.php

For the actual supported list, see .travis.yml.

About

An object-oriented PHP wrapper for Drip's REST API v2.0

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 99.7%
  • Makefile 0.3%