2

Restful api should not use verb in path, but how to design api for:

  • search products
  • filter products
  • invite friends
Alexandru Marculescu
  • 5,569
  • 6
  • 34
  • 50
Sodiaan
  • 341
  • 1
  • 3
  • 10

1 Answers1

3

Always ask yourself:

What are my Resources?

  • List products: GET /api/products
  • Filter products: GET /api/products?status={{status}}
  • Invite friends: POST /api/invitation

Note that the path (REST Resource) is a noun (invitation), not a verb (invite).

Alexandru Marculescu
  • 5,569
  • 6
  • 34
  • 50