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