DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone >

Banckle.Helpdesk announces Customer Support SDK for PHP Applications

Usman Sarfraz user avatar by
Usman Sarfraz
·
Nov. 05, 14 · · News
Like (0)
Save
Tweet
797 Views

Join the DZone community and get the full member experience.

Join For Free
Banckle.Helpdesk is a web based customer support, email help desk and online ticketing management system to help your customers in the cloud. Along with organizing all the generated tickets under different mailboxes, users can also integrate and manage multiple mailboxes under one account.


Banckle.Helpdesk SDK for PHP Applications has just been announced  to empower PHP programmers for customizing their PHP applications as per their requirements by using Banckle.Helpdesk Cloud APIs .


Main Features

  • Seamless Multiple Mailbox Integration
  • Collaborative Team Inbox
  • Real Time Helpdesk Activity Reporting
  • Platform Independence
  • Smart Online Ticketing System and Response Tools
  • Automatic and Organized Ticket Creation
  • Generate Reports, Tags and Canned Messages
Download

You can download Banckle.Helpdesk SDK for PHP directly from Github .

Configuration
To obtain your API Key, login  to Banckle Apps Dashboard and go to API and Single Sign-On on left. Click the Lock icon to view your API Key. Set API key in Product.php file.
Usage Examples
Generate a new Auth Token

require 'APIClient.php';

// Get $apiKey & $Uri from Products.php and create object of APIClient class.
$apiServer = Product::$banckleAccountUri;
$apiKey = Product::$apiKey;
$apiClient = new APIClient($apiKey,$apiServer);

// Authenticate user & get token
$email = '**********';
$password = '**********';
$data = array('userEmail' => $email, 'password' => $password);
$objAuth = new AuthApi($apiClient);
$result = $objAuth->getToken($body);
$token = $result->authorization->token;

Get all Departments

require 'APIClient.php';

$apiServer = Product::$banckleHelpdeskUri;
$apiKey = Product::$apiKey;
$apiClient = new APIClient($apiKey,$apiServer);

// Set token
Product::$token = '**********';

$departments = new DepartmentsApi($apiClient);
$result = $departments->getDepartments();
print_r($result);

Sign Up for a free Banckle account  if you are yet to subscribe. Please talk to us  if you have any further questions or seek any assistance about Banckle.Helpdesk SDK, we assure you a prompt reply.


PHP Software development kit application

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Message Queuing and the Database: Solving the Dual Write Problem
  • Pre-Commit Hooks DevOps Engineer Should Know To Control Kubernetes
  • Transactions vs. Analytics in Apache Kafka
  • Take Control of Your Application Security

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo