All Projects → DripEmail → drip-php

DripEmail / drip-php

Licence: MIT license
An object-oriented PHP wrapper for Drip's API

Programming Languages

PHP
23972 projects - #3 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to drip-php

acord
An API wrapper for discord, built using aiohttp and pydantic.
Stars: ✭ 25 (+13.64%)
Mutual labels:  api-wrapper
asyncpixel
An Asyncronous Python wrapper for the Hypixel API.
Stars: ✭ 22 (+0%)
Mutual labels:  api-wrapper
node-fred
A Fred2 API wrapper
Stars: ✭ 16 (-27.27%)
Mutual labels:  api-wrapper
pybuildkite
A Python library for the Buildkite API
Stars: ✭ 29 (+31.82%)
Mutual labels:  api-wrapper
roux
Simple and (a)synchronous Reddit API wrapper for Rust.
Stars: ✭ 41 (+86.36%)
Mutual labels:  api-wrapper
wp-pgp-encrypted-emails
🔐 📧 Encrypts WordPress emails using OpenPGP or S/MIME with a familiar API.
Stars: ✭ 35 (+59.09%)
Mutual labels:  api-wrapper
bitflyer
⚡ bitFlyer API wrapper for Ruby
Stars: ✭ 25 (+13.64%)
Mutual labels:  api-wrapper
nextcord
A Python wrapper for the Discord API forked from discord.py
Stars: ✭ 956 (+4245.45%)
Mutual labels:  api-wrapper
scala-weather
High-performance Scala library for looking up the weather
Stars: ✭ 45 (+104.55%)
Mutual labels:  api-wrapper
api
Free Rest Webservices
Stars: ✭ 20 (-9.09%)
Mutual labels:  api-wrapper
go-ovh
Simple go wrapper for the OVH API
Stars: ✭ 107 (+386.36%)
Mutual labels:  api-wrapper
python-censusbatchgeocoder
A simple Python wrapper for U.S. Census Geocoding Services API batch service
Stars: ✭ 40 (+81.82%)
Mutual labels:  api-wrapper
the-traveler
The Traveler is a small npm package which wraps around the Destiny 2 API.
Stars: ✭ 52 (+136.36%)
Mutual labels:  api-wrapper
jokeapi
Official golang wrapper for Sv443's jokeapi.
Stars: ✭ 19 (-13.64%)
Mutual labels:  api-wrapper
rdfp
This R package connects the DoubleClick for Publishers API from R
Stars: ✭ 16 (-27.27%)
Mutual labels:  api-wrapper
tatsumaki.js
A api wrapper for the Tatsumaki Discord Bot API
Stars: ✭ 9 (-59.09%)
Mutual labels:  api-wrapper
rust-ipfs-api
Rust language IPFS API implementation
Stars: ✭ 20 (-9.09%)
Mutual labels:  api-wrapper
libopenTIDAL
TIDAL API interface written in ANSI C
Stars: ✭ 17 (-22.73%)
Mutual labels:  api-wrapper
SwiftFlyer
An API wrapper for bitFlyer.
Stars: ✭ 39 (+77.27%)
Mutual labels:  api-wrapper
DPP
C++ Discord API Bot Library - D++ is Lightweight and scalable for small and huge bots!
Stars: ✭ 560 (+2445.45%)
Mutual labels:  api-wrapper

Drip API Wrapper - PHP

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

Drip PHP API Client Tests

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(["account_id" => "YOUR_ACCOUNT_ID", "api_key" => "YOUR_API_KEY"]);

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

$client = new \Drip\Client(["account_id" => "YOUR_ACCOUNT_ID", "access_token" => "YOUR_ACCESS_TOKEN"]);

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 .github/workflows/build.yml.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].