Using REST
The iMIS REST API is an HTTP-based web API that allows developers to send a request to a simple URL instead of using XML. The iMIS REST API uses JSON objects to send the data in smaller payloads between the client and the server. A lazy-loaded pattern allows asynchronous handling when objects are loaded on a page, which also improves performance.
All requests are sent to a URL in the form of a verb:
GET
Query or find data
POST
Create or add new data
PUT
Replace or update existing data
DELETE
text Delete existing data
Updated 6 days ago