Skip to content

WebAPI - REST and SOAP

These two web services only handle the transport of data, they hold no functionality in themselves. The two web services are published under /integration-api and /webservice respectively.

These web services consists of one or more views and one or more import handlers. Views determine what data can be retrieved from Easit GO and import handlers determines how the data is processed in or retrieved by Easit GO.

Unlike many other REST APIs where you express yourself via parameters in a URL, the REST and SOAP web services uses mainly the body in the request sent to Easit GO. This makes it so that Easit GO 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.

As of release 2023.05 of Easit GO, URL parameters are supported for the REST web service. Read more here