Overview
This article provides information on understanding the Kayako Classic Representational State Transfer Application Programming Interface (REST API) and its methods.
Information
With v4, we have implemented the mechanism 'REST API'. REST is an architecture style for designing networked applications. The idea is that, rather than using complex mechanisms such as Common Object Request Broker Architecture (CORBA), Remote Procedure Call (RPC), or Simple Object Access Protocol (SOAP) to connect between machines, simple HTTP is used to make calls between machines. An API is a software-to-software interface, not a user interface, using which applications talk to each other without any user knowledge or intervention.
The REST API allows to develop applications or to connect and integrate other applications into the helpdesk. Whether we are building a custom plugin, connecting Kayako to another app or pulling data from helpdesk into your other internal systems, the API lets us retrieve, add and modify data in the helpdesk. Almost every object in Kayako (a ticket, a user, a staff, etc.) can be manipulated using the API.
In our software, the REST API request is simply an HTTP request with the URL set to the path of the helpdesk module (such as Base), controller (like User) and parameters containing the payload of the request (i.e. API key, salt, and signature). The Kayako API is a 'RESTful web API'. The API uses plain XML for receiving and dispatching data.
REST API allows the following actions to perform in helpdesk:
- GET
- PUT
- POST
- DELETE
The API uses all four REST commands (GET, PUT, POST, DELETE). These commands correspond to respective actions inside the helpdesk. Using REST API in helpdesk, the above-mentioned actions can be performed on the following sections:
- Tickets
- TicketAttachment
- TicketCount
- TicketCustomField
- TicketNote
- TicketPost
- TicketPriority
- Department
- Staff
- TicketSearch
- TicketStatus
- TicketTimeTrack
- StaffGroup
- TicketType
- User
- UserGroup
- UserOrganization
- UserSearch
- News
- Troubleshooter
Related Articles
- For details on how to reach the API Endpoint, authentication, and others, please go through the Kayako REST API article.
- To see all GitHub repositories available, please refer to Kayako GitHub Repositories.