Sodiaan
Sodiaan

Reputation: 341

Restful api and operations like search and invite

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

Upvotes: 2

Views: 730

Answers (1)

Alex Marculescu
Alex Marculescu

Reputation: 5770

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).

Upvotes: 3

Related Questions