Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 358 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 358 Bytes

ambassador

PHP wrapper for the Ambassador API.

Example usage:

include_once(APPPATH.'libraries/ambassador.php');
$ambassador = new Ambassador("USERNAME","API_KEY");
$params = array('email' => '[email protected]');
$result = $ambassador->call("ambassador/get",$params);
print_r($result);