{ "routes": [ { "method": "GET", "path": "/teks", "handler": "teks.find", "config": { "policies": [] } }, { "method": "GET", "path": "/teks/count", "handler": "teks.count", "config": { "policies": [] } }, { "method": "GET", "path": "/teks/:id", "handler": "teks.findOne", "config": { "policies": [] } }, { "method": "POST", "path": "/teks", "handler": "teks.create", "config": { "policies": [] } }, { "method": "PUT", "path": "/teks/:id", "handler": "teks.update", "config": { "policies": [] } }, { "method": "DELETE", "path": "/teks/:id", "handler": "teks.delete", "config": { "policies": [] } } ] }