Leatherback endpoints - Oxidda/Leatherback GitHub Wiki
Currently leatherback Controllers have the following endpoints:
| Action | HTTPverb | route | payload |
|---|---|---|---|
| Get all | GET | yourdefinedroute/GetAll | Noting |
| Search data | POST | yourdefinedroute/Search | Payload in body, its either the Entity you defined, or the special searchcriteria entity |
| Add | POST | yourdefinedroute/Add | Payload in body, its the entity you defined |
| Update | PUT | yourdefinedroute/Update | Payload in body, its the entity you defined |
| DELETE | Delete | yourdefinedroute/Delete | ?id= (This means in the url) |