Representational State Transfer

To communicate with DATAGERRY a REST interface is provided. This is subdivided into the areas data management and configuration.

Allowed methods

HTTP defines a set of request methods to indicate the desired action to be performed for a given resource. Although they can also be nouns, these request methods are sometimes referred as HTTP verbs.

  1. GET - Requests using GET should only retrieve data.

  2. POST - The POST method is used to submit new data to the specified resource

  3. PUT - The PUT method updates all current data of the target resource with the request payload.

  4. DELETE - The DELETE method deletes the specified data.

Routes