LaravelPackages.net
Acme Inc.
Toggle sidebar
wouternl/laravel-drip

A Laravel wrapper for Drip's REST API v2.0

40.409
3
1.2.4
About wouternl/laravel-drip

wouternl/laravel-drip is a Laravel package for a laravel wrapper for drip's rest api v2.0. It currently has 3 GitHub stars and 40.409 downloads on Packagist (latest version 1.2.4). Install it with composer require wouternl/laravel-drip. Discover more Laravel packages by wouternl or browse all Laravel packages to compare alternatives.

Last updated

Drip API Laravel Wrapper

A Laravel wrapper for Drip's PHP wrapper for their REST API

Installation

  1. Add the package as a dependency in your composer.json
composer require wouternl/laravel-drip
  1. publish the vendor config file
php artisan vendor:publish --provider="wouterNL\Drip\DripPhpServiceProvider"
  1. Add your Drip API token to the config file located in app/config/drip.php. I recommend you add this key to your project .env file instead of directly adding it to your config file. You can find your API token at the user settings page (https://www.getdrip.com/user/edit).
DRIP_API_TOKEN=your token here
  1. Add your Drip Account ID to the config file located in app/config/drip.php. I recommend you add this key to your project .env file instead of directly adding it to your config file.
DRIP_ACCOUNT_ID=Your Account ID here

Laravel <= 5.4

  1. Add the following line to your providers array in your config/app.php file
wouterNL\Drip\DripServiceProvider::class,
  1. Add the following line to your aliases array in your config/app.php file
'Drip' => wouterNL\Drip\Facades\DripFacade::class,

The following functions are available:

  • Drip::getCampaigns($params)
  • Drip::fetchCampaign($params)
  • Drip::getAccounts()
  • Drip::deleteSubscriber($params)
  • Drip::createOrUpdateSubscriber($params)
  • Drip::fetchSubscriber($params)
  • Drip::subscribeSubscriber($params)
  • Drip::unsubscribeSubscriber($params)
  • Drip::tagSubscriber($params)
  • Drip::untagSubscriber($params)
  • Drip::recordEvent($params)
  • Drip::makeRequest($url, $params = array(), $req_method = self::GET)
  • Drip::getRequestInfo()
  • Drip::getErrorMessage()
  • Drip::getErrorCode()

For more information about the REST API go to this link: https://www.getdrip.com/docs/rest-api

Comments