What's the best approach to bring information about an object in a Rest API?
All the entire object always:
Request: GET /user/{idUser} Response: { id, name, birthday, street, city, state, country }
Part that matters in an object, identified by context:
Request: GET /user/address/{idUser} Response: { id, street, city, state, country }