JSON in GET request: REST API
I am creating a very simple toy API that will take a list of People objects (passed as JSON), do some business logic based on their name and age, then return a response object based on the info provided. Input example: [ { "firstName": "John", "lastName": "Smith", "age": 45, "favoriteFood": "pizza" }, { "firstName": "Jane",… Read More JSON in GET request: REST API