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