Reputation: 341
Restful api should not use verb in path, but how to design api for:
Upvotes: 2
Views: 730
Reputation: 5770
Always ask yourself:
What are my Resources?
GET /api/products
GET /api/products?status={{status}}
POST /api/invitation
Note that the path (REST Resource) is a noun (invitation
), not a verb (invite
).
Upvotes: 3