All APIs provided by Ezlogz adhere to standard HTTP request methods, which signify the intended operation to be conducted. For each endpoint outlined in our documentation, the necessary request method is clearly specified.

GET
Deploy a GET request for retrieving data, such as generating a list of all drivers within your company.

POST
A POST request is optimal when establishing new records. For instance, you might use it to onboard a new driver into your fleet.

PUT
If you need to modify existing records, like adjusting a driver's cycle setting, the PUT request comes in handy.

DELETE
Finally, when you have to erase existing records – for instance, to remove a driver from your fleet – a DELETE request is your go-to method.

In summary, each HTTP request method serves a specific function within our API, aimed at ensuring the smooth operation of your data retrieval, creation, modification, and deletion processes.