Skip to content

Introduction

The web API for EasitGO supports REST/JSON and SOAP/XML. These two web services only handles the transport of data, they hold no functionality in themselves. The two web services is published under /integration-api and /webservice respectively.

The web API for EasitGO consists of one or more views and one or more importhandlers. Views determines what data can be retrieved from EasitGO and importhandlers determines how the data is processed in or retrieved by EasitGO.

Unlike many other REST APIs where you express yourself via parameters in a URL, EasitGO's web API uses the body in the request sent to EasitGO. This makes it so that EasitGO uses one single endpoint, /items, for both GET and POST and differentiate what to do by the combination of method + contents of request body.

  • GET + itemViewIdentifier = Get items from Easit GO.
  • POST + importHandlerIdentifier = Create / Update items in Easit GO.