I'm working on designing a RESTFul service which provides CRUD operations for various domain objects. One such object is Person.
We have the following services:
GET /person/list?type=Infant
responds with all persons of the type Infant.
POST /person/list
accepts a list of persons in the payload and creates those records.
Question: Does it make sense for
POST /person/list?type=Infant
in which case, we would create the persons passed in the payload and then respond with a list of all persons of the type Infant?
What's the best practice?