Skip to content

notscottsmith/dear-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dear-api

Build Status Scrutinizer Code Quality PHP Library for dear systems API v2.

Requirements

  • PHP 8.1+
  • guzzlehttp/guzzle 7.3+
  • ext-json extension

Installation

composer require notscottsmith/dearapi

Otherwise just download the package and add it to the autoloader.

API Documentation

docs

Usage

Create a Dear instance.

$dear = UmiMood\Dear\Dear::create("DEAR-ACCOUNT_ID", "DEAR-APPLICATION-KEY");

Get data from API

$products = $dear->product()->get([]);
$accounts = $dear->account()->get([]);
$me = $dear->me()->get([]);

Push a new record to the API

$response = $dear->product()->create($params); // see docs for available parameters

Update an existing record

$response = $dear->product()->update($guid, $params); // see docs for available parameters

Delete a record

$response = $dear->product()->delete($guid, []);

Links

Packages

No packages published

Languages

  • PHP 100.0%