eTermin's REST API let's developers quickly build applications which
enable access to the data in your eTermin account via HTTP and JSON.
This allows you to integrate online and desktop applications (3rd party
systems) seamlessly into your eTermin account. Almost every object in
eTermin (whether it is a contact, appointment, etc.) can be manipulated
using the API.
When you make a request to the eTermin's REST API you need to address each ressource by a unique URI. The operations which can be done with the resources can be defined using the HTTP verbs. Our API uses all four REST commands - GET, POST, PUT, DELETE.
read resources
create resources
edit resources
delete resources
The standard API URL to be used is "https://www.etermin.net/api/{resource}"
In every request you must carry with it an API key (you find this key in the account settings), a signature and a randomly generated salt string.
The header of each request should contain following elements:
eTermin can send you a push notification once an appointment was created, modified or deleted on the eTermin platform. On your side you need to implement a handler that can read the variables. The supported variables you can find here. You can specify the address of the handler in the "Configuration->Integration - API->API" tab. In this tab you also will be able to send test notifications to your handler. Also, please take a look ath the examples below.