A WordPress php library for interacting with the Zendesk API.
Example Usage:
$zenapi = new Zendesk_Wordpress_API('imforza');
if( ! $zenapi->authenticate('email@email.com', 'password')){
error_log("hold up, auth error");
}
error_log(print_r( $zenapi->create_ticket("319 Main Fire", "The building is currently on fire"), true));
error_log(print_r( $zenapi->list_tickets(), true));
error_log(print_r( $zenapi->get_requests(), true));